:root {
  --red: #e30613;
  --ink: #111;
  --muted: #666;
  --paper: #f5f3ef;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font:
    16px/1.55 -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
a {
  color: inherit;
}
.wrap {
  width: min(1120px, calc(100% - 36px));
  margin: auto;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
header img {
  width: 150px;
  height: auto;
}
.phone {
  font-weight: 800;
  text-decoration: none;
}
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 620px;
  background: #fff;
}
.hero-copy {
  padding: clamp(48px, 8vw, 110px);
}
.eyebrow {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
h1 {
  max-width: 780px;
  margin: 0.2em 0;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}
h1 span {
  color: var(--red);
}
.lead {
  max-width: 650px;
  color: #454545;
  font-size: 1.16rem;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 20px;
  border: 2px solid var(--ink);
  font-weight: 850;
  text-decoration: none;
}
.button.primary {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}
main section {
  padding: 70px 0;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  padding: 28px;
  background: #fff;
  border-top: 5px solid var(--ink);
}
.card h2,
.card h3 {
  margin: 0.1em 0 0.4em;
}
.service-copy {
  max-width: 850px;
}
.service-copy h2 {
  margin: 0 0 0.45em;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.045em;
}
.service-copy p {
  color: #4f4f4f;
}
.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.service-links a {
  padding: 10px 13px;
  border: 1px solid #bbb;
  background: #fff;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}
.steps {
  counter-reset: step;
}
.steps .card:before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  color: var(--red);
  font-size: 2rem;
  font-weight: 900;
}
.faq {
  max-width: 820px;
}
.faq details {
  padding: 18px 0;
  border-bottom: 1px solid #bbb;
}
.faq summary {
  font-weight: 850;
  cursor: pointer;
}
.local {
  color: #fff;
  background: #111;
}
.local .grid {
  align-items: start;
}
.local a {
  color: #fff;
}
footer {
  padding: 28px 0;
  color: #555;
  font-size: 0.9rem;
}
@media (max-width: 760px) {
  .hero {
    display: block;
  }
  .hero img {
    height: 320px;
  }
  .hero-copy {
    padding: 45px 22px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  header img {
    width: 125px;
  }
  .phone {
    font-size: 0.9rem;
  }
}
