:root {
  --ink: #16171d;
  --ink-soft: #30313a;
  --muted: #686d78;
  --paper: #f6f4ef;
  --white: #ffffff;
  --line: #e3ded5;
  --red: #c61f1d;
  --red-dark: #8f1211;
  --tan: #d9b56b;
  --charcoal: #202329;
  --shadow: 0 24px 70px rgba(22, 23, 29, .2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 82px;
  padding: 13px 30px;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(227, 222, 213, .9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-right: auto;
}

.brand img {
  width: 178px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.nav a:hover {
  color: var(--red);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 17px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.section-dark {
  color: var(--white);
  background: var(--charcoal);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: stretch;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(22, 23, 29, .96) 0%, rgba(22, 23, 29, .76) 42%, rgba(22, 23, 29, .22) 100%),
    linear-gradient(0deg, rgba(143, 18, 17, .28), rgba(143, 18, 17, .1));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 420px;
  gap: 48px;
  align-items: center;
  padding: 78px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--tan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Roboto Slab", Georgia, serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(46px, 7vw, 84px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 54px);
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.hero-lede {
  max-width: 650px;
  color: rgba(255, 255, 255, .88);
  font-size: 21px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 30px rgba(198, 31, 29, .28);
}

.btn-secondary {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .78);
}

.hero-card,
.contact-card,
.review-card,
.service-card {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 30px;
  color: var(--ink);
  background: rgba(255, 255, 255, .95);
}

.hero-card h2 {
  font-family: Inter, Arial, sans-serif;
  font-size: 28px;
  line-height: 1.13;
}

.hero-card ul {
  display: grid;
  gap: 13px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-card li {
  padding-left: 18px;
  border-left: 4px solid var(--red);
  color: var(--ink-soft);
  font-weight: 800;
}

.status-pill {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  color: var(--red-dark);
  background: #fff2ee;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-bar {
  position: relative;
  z-index: 3;
  margin-top: -44px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(22, 23, 29, .12);
}

.trust-grid div {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--red);
  font-size: 25px;
  font-weight: 900;
}

.trust-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: 96px 0;
}

.section-light {
  background: var(--white);
}

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

.section-heading h2 {
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 270px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
}

.service-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--red);
  font-weight: 900;
}

.service-card p {
  color: var(--muted);
  font-weight: 650;
}

.split-band {
  padding: 78px 0;
  color: var(--white);
  background: var(--red-dark);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 60px;
  align-items: center;
}

.split-grid p {
  max-width: 670px;
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
}

.steps {
  display: grid;
  gap: 12px;
}

.steps div {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 74px;
  padding: 14px 18px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
}

.steps strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  flex: 0 0 auto;
}

.steps span {
  font-weight: 900;
}

.review-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 48px;
  align-items: center;
}

.review-card {
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.review-card p {
  color: var(--ink-soft);
  font-size: 20px;
  font-weight: 700;
}

.contact-section {
  padding: 92px 0;
  color: var(--white);
  background: var(--charcoal);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 48px;
  align-items: start;
}

.contact-grid p {
  max-width: 620px;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
}

.contact-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.footer {
  padding: 24px 0;
  color: rgba(255, 255, 255, .78);
  background: #111217;
  font-size: 13px;
  font-weight: 800;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

@media (max-width: 980px) {
  .topbar {
    flex-wrap: wrap;
    gap: 14px;
  }

  .brand {
    width: 100%;
  }

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-grid,
  .split-grid,
  .review-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    max-width: 540px;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .topbar {
    position: static;
    padding: 12px 14px;
  }

  .brand img {
    width: 148px;
  }

  .phone-link {
    width: 100%;
  }

  .hero-grid {
    padding: 54px 0 70px;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .trust-bar {
    margin-top: -34px;
  }

  .trust-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section,
  .contact-section {
    padding: 70px 0;
  }

  .footer-grid {
    display: grid;
  }
}
