:root {
  --ink: #2f3033;
  --ink-soft: #575a60;
  --muted: #777a80;
  --paper: #fffdf9;
  --white: #ffffff;
  --cream: #f7efe4;
  --cream-strong: #f1dfc7;
  --line: #e2ddd5;
  --red: #ef1d27;
  --red-dark: #b9151c;
  --teal: #ef1d27;
  --teal-soft: #f1dfc7;
  --sage: #74887d;
  --stone: #696769;
  --shadow: 0 24px 70px rgba(47, 48, 51, 0.14);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: 58px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 23px;
}

ul {
  padding-left: 1.1rem;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 4px;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 16px;
}

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid rgba(226, 221, 213, 0.84);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 244px;
}

.brand img {
  width: 64px;
  height: 58px;
  object-fit: contain;
}

.brand-kicker {
  display: block;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-name {
  display: block;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle-lines::before {
  transform: translateY(-7px);
}

.nav-toggle-lines::after {
  transform: translateY(5px);
}

.nav-open .nav-toggle-lines {
  transform: rotate(45deg);
}

.nav-open .nav-toggle-lines::before {
  transform: translateY(0) rotate(90deg);
}

.nav-open .nav-toggle-lines::after {
  opacity: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: var(--teal-soft);
}

.nav-cta {
  margin-left: 8px;
  color: var(--white) !important;
  background: var(--red) !important;
}

.nav-cta:hover {
  background: var(--red-dark) !important;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(30, 30, 32, 0.76) 0%, rgba(30, 30, 32, 0.55) 38%, rgba(30, 30, 32, 0.12) 72%),
    linear-gradient(0deg, rgba(30, 30, 32, 0.22), rgba(30, 30, 32, 0));
}

.hero-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(590px, 100%);
  padding: 42px 0 96px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--cream-strong);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: var(--red);
  content: "";
}

.hero p {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--red);
}

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

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.12);
}

.btn-light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.btn-light:hover {
  border-color: var(--teal);
}

.hero-facts {
  width: min(var(--max), calc(100% - 40px));
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  overflow: hidden;
}

.hero-fact {
  min-height: 92px;
  padding: 18px 20px;
  background: rgba(255, 253, 249, 0.93);
  color: var(--ink);
}

.hero-fact strong {
  display: block;
  color: var(--red);
  font-size: 20px;
}

.section {
  padding: 90px 0;
}

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

.section-soft {
  background: linear-gradient(90deg, var(--cream), var(--teal-soft));
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-label {
  display: block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lead {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 20px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 52px;
  align-items: center;
}

.quote-panel {
  position: relative;
  padding: 40px;
  border-left: 5px solid var(--red);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-panel blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 27px;
  line-height: 1.35;
}

.quote-panel cite {
  display: block;
  margin-top: 22px;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.value-list {
  display: grid;
  gap: 16px;
}

.value-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  align-items: start;
}

.value-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: var(--teal-soft);
  border-radius: 8px;
}

.value-item p {
  color: var(--ink-soft);
}

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

.service-card,
.step-card,
.contact-card,
.legal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(47, 48, 51, 0.07);
}

.service-card {
  min-height: 280px;
  padding: 26px;
}

.service-card h2 {
  font-size: 23px;
}

.service-card svg {
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  color: var(--red);
}

.service-card p,
.step-card p,
.contact-card p,
.legal-card p {
  color: var(--ink-soft);
}

.service-card ul {
  margin: 16px 0 0;
  color: var(--ink-soft);
}

.wide-band {
  padding: 58px 0;
  color: var(--white);
  background: var(--stone);
}

.band-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.band-inner p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: steps;
}

.step-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  overflow: hidden;
}

.step-card::before {
  counter-increment: steps;
  content: "0" counter(steps);
  display: block;
  margin-bottom: 28px;
  color: var(--red);
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.area-list span {
  padding: 10px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.media-frame {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.vehicle-frame {
  padding: 24px;
}

.page-hero {
  padding: 86px 0 70px;
  background:
    linear-gradient(90deg, rgba(14, 110, 115, 0.1), rgba(239, 29, 39, 0.08)),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 44px;
  align-items: center;
}

.page-hero p {
  max-width: 760px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 20px;
}

.page-hero h1 {
  overflow-wrap: anywhere;
  hyphens: auto;
}

.page-logo {
  width: 220px;
  justify-self: end;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: start;
}

.contact-card {
  padding: 28px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
}

.contact-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.contact-row span {
  color: var(--muted);
  font-weight: 800;
}

.contact-row a {
  color: var(--teal);
  font-weight: 800;
}

.hours {
  margin-top: 20px;
  padding: 20px;
  color: var(--ink);
  background: var(--teal-soft);
  border-radius: 8px;
}

.contact-note {
  margin-top: 20px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 110px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.legal-nav a {
  display: block;
  padding: 9px 0;
  color: var(--ink-soft);
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}

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

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-card {
  padding: 28px;
  overflow-wrap: anywhere;
}

.legal-card h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

.legal-card h3 {
  margin: 24px 0 8px;
  font-size: 20px;
}

.todo {
  display: inline;
  padding: 1px 0;
  color: var(--red-dark);
  background: #fff1f1;
  border-bottom: 2px solid #ffd2d2;
  font-weight: 900;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.site-footer {
  padding: 58px 0 30px;
  color: rgba(255, 255, 255, 0.88);
  background: #3f3d40;
}

.footer-grid {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr 0.9fr;
  gap: 34px;
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer-brand img {
  width: 78px;
  padding: 6px;
  background: var(--paper);
  border-radius: 8px;
}

.site-footer h2,
.site-footer h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 18px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  width: min(var(--max), calc(100% - 40px));
  margin: 36px auto 0;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

@media (max-width: 980px) {
  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 20px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(47, 48, 51, 0.12);
  }

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

  .nav-links a {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-cta {
    margin-left: 0;
  }

  .hero,
  .hero-inner {
    min-height: 680px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-facts,
  .services-grid,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .intro-grid,
  .split,
  .contact-grid,
  .legal-layout,
  .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .page-logo {
    justify-self: start;
  }

  .legal-nav {
    position: static;
  }

  .band-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 29px;
  }

  h3 {
    font-size: 21px;
  }

  .nav-shell,
  .wrap,
  .hero-facts,
  .hero-inner,
  .band-inner,
  .page-hero-inner,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 28px, var(--max));
  }

  .brand {
    min-width: auto;
  }

  .brand img {
    width: 56px;
    height: 50px;
  }

  .brand-kicker {
    font-size: 11px;
  }

  .brand-name {
    font-size: 14px;
  }

  .hero,
  .hero-inner {
    min-height: 910px;
  }

  .hero-inner {
    align-items: flex-start;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(30, 30, 32, 0.82), rgba(30, 30, 32, 0.48)),
      linear-gradient(0deg, rgba(30, 30, 32, 0.25), rgba(30, 30, 32, 0));
  }

  .hero-copy {
    padding-top: 60px;
    padding-bottom: 360px;
  }

  .hero p,
  .lead,
  .page-hero p {
    font-size: 18px;
  }

  .hero-actions,
  .section-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-facts {
    bottom: 16px;
    grid-template-columns: 1fr;
  }

  .hero-fact {
    min-height: 76px;
    padding: 14px 16px;
  }

  .section {
    padding: 66px 0;
  }

  .quote-panel {
    padding: 28px;
  }

  .quote-panel blockquote {
    font-size: 22px;
  }

  .services-grid,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
