:root {
  --ink: #070707;
  --muted: #696969;
  --panel: #f1f1f1;
  --paper: #ffffff;
  --line: #d4d4d4;
  --accent: #d00000;
  --accent-dark: #980000;
  --steel: #bfc3c7;
  --steel-dark: #34363a;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

* {
  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.5;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
  padding: 8px clamp(18px, 4vw, 54px);
  background:
    linear-gradient(90deg, rgba(208, 0, 0, 0.18), rgba(208, 0, 0, 0) 34%),
    rgba(7, 7, 7, 0.96);
  border-bottom: 3px solid var(--accent);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  color: var(--white);
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  object-position: center;
  border: 2px solid var(--white);
  border-radius: 6px;
  box-shadow: 0 0 0 2px var(--accent);
}

.brand-logo.horizontal-logo {
  width: min(480px, 54vw);
  height: auto;
  max-height: 118px;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.brand-text {
  max-width: 210px;
  line-height: 1.05;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
}

.nav a,
.text-link {
  text-decoration: none;
  font-weight: 700;
}

.nav a:hover,
.text-link:hover {
  color: var(--accent);
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.header-call,
.button.primary {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 12px 26px rgba(197, 36, 36, 0.24);
}

.header-call:hover,
.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  color: var(--ink);
  background: var(--steel);
  border-color: rgba(0, 0, 0, 0.12);
}

.button.secondary.dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  isolation: isolate;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.66) 42%, rgba(0, 0, 0, 0.1) 74%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0));
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 80px);
  padding: 56px 0 104px;
  color: var(--white);
}

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

.hero .eyebrow,
.landing-hero .eyebrow {
  color: var(--steel);
}

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

h1 {
  max-width: 690px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.callout-line,
.quote-phone {
  font-weight: 900;
}

.callout-line a,
.quote-phone a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.quote-phone {
  margin-bottom: 14px;
  color: var(--steel-dark);
}

.quote-phone a {
  color: var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin: 34px 0 0;
}

.hero-proof div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.hero-proof dt {
  font-weight: 900;
}

.hero-proof dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.quote-band,
.content-section,
.service-area,
.landing-hero {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.content-section:nth-of-type(odd) {
  background:
    linear-gradient(135deg, rgba(208, 0, 0, 0.07), rgba(255, 255, 255, 0) 38%),
    var(--white);
}

.content-section:nth-of-type(even) {
  background:
    linear-gradient(135deg, rgba(52, 54, 58, 0.08), rgba(255, 255, 255, 0) 40%),
    #f7f7f7;
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(208, 0, 0, 0.18), rgba(208, 0, 0, 0) 34%),
    var(--ink);
  color: var(--white);
}

.section-intro {
  max-width: 760px;
}

.section-intro p,
.content-section p,
.landing-hero p {
  color: var(--muted);
}

.quote-band .section-intro p {
  color: rgba(255, 255, 255, 0.78);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 3vw, 30px);
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: #333;
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #c9c2b8;
  border-radius: 6px;
  font: inherit;
  background: #fffdf9;
}

input[aria-invalid="true"],
textarea[aria-invalid="true"],
select[aria-invalid="true"] {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(208, 0, 0, 0.18);
}

button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

textarea {
  resize: vertical;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.wide {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-note[data-state="success"] {
  color: #12623a;
  font-weight: 800;
}

.form-note[data-state="error"] {
  color: var(--accent-dark);
  font-weight: 800;
}

.form-note[data-state="loading"] {
  color: var(--steel-dark);
  font-weight: 800;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.steps article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--accent);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--accent);
  border-radius: 999px;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.vehicle-grid span,
.area-list a {
  min-height: 58px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.service-area {
  background:
    linear-gradient(135deg, rgba(208, 0, 0, 0.12), rgba(7, 7, 7, 0.08)),
    #eceff1;
  border-top: 4px solid var(--accent);
  border-bottom: 4px solid var(--ink);
}

.area-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.faq details {
  max-width: 900px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 900;
}

.faq details p {
  margin: 12px 0 0;
}

.landing-hero {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.96), rgba(7, 7, 7, 0.76)),
    url("assets/hero-junk-car-tow.png") center / cover;
}

.landing-hero > div {
  max-width: 760px;
}

.compact-header .brand-logo:not(.horizontal-logo) {
  width: 58px;
  height: 58px;
}

.landing-page-hero {
  position: relative;
  min-height: calc(100vh - 76px);
  isolation: isolate;
  overflow: hidden;
}

.landing-hero-image,
.landing-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.landing-hero-image {
  object-fit: cover;
}

.landing-hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.68) 48%, rgba(0, 0, 0, 0.28)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0));
}

.landing-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 76px) 0;
}

.landing-hero-copy {
  color: var(--white);
}

.landing-hero-copy h1 {
  font-size: clamp(2.2rem, 6vw, 5rem);
}

.landing-hero-copy p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.quote-panel {
  padding: clamp(16px, 2vw, 22px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 241, 241, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-panel h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

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

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.benefit-grid article {
  padding: 20px;
  background: linear-gradient(180deg, #111111, #242424);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--white);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.benefit-grid article h3 {
  color: var(--white);
}

.benefit-grid article p {
  color: rgba(255, 255, 255, 0.76);
}

.related-links {
  background: var(--panel);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(44px, 7vw, 80px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(208, 0, 0, 0.3), rgba(208, 0, 0, 0) 40%),
    var(--ink);
}

.final-cta h2 {
  max-width: 780px;
}

.final-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.mobile-sticky-cta {
  display: none;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  align-items: stretch;
  justify-content: space-between;
  gap: clamp(18px, 4vw, 46px);
  padding: clamp(34px, 5vw, 64px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(208, 0, 0, 0.3), rgba(208, 0, 0, 0) 24%),
    linear-gradient(135deg, #050505, #181818 58%, #2b0000);
  border-top: 5px solid var(--accent);
}

.footer-logo {
  display: block;
  width: clamp(128px, 15vw, 190px);
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.45);
}

.footer-brand-block {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.footer-brand-block strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 3vw, 2.3rem);
  line-height: 1;
  text-transform: uppercase;
}

.footer-call-panel {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.footer-call-panel span {
  color: var(--steel);
  font-weight: 900;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: var(--white);
  font-weight: 800;
}

.legal-page {
  max-width: 940px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 40px);
}

.legal-page h1 {
  color: var(--ink);
}

.legal-page h2 {
  margin-top: 34px;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.1;
}

.legal-updated {
  color: var(--muted);
  font-weight: 800;
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

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

  .quote-band,
  .split,
  .landing-hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-proof,
  .steps,
  .area-list,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .quote-panel {
    max-width: 680px;
  }

  .final-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
    gap: 12px;
  }

  .brand-text {
    max-width: 170px;
    font-size: 0.9rem;
  }

  .brand-logo.horizontal-logo {
    width: min(340px, 88vw);
    max-height: 92px;
  }

  .header-call {
    width: 100%;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 48px 0 80px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.55));
  }

  .quote-form,
  .vehicle-grid {
    grid-template-columns: 1fr;
  }

  .landing-page-hero {
    min-height: auto;
  }

  .landing-hero-inner {
    width: calc(100% - 28px);
    padding: 30px 0 86px;
  }

  .landing-hero-copy h1 {
    line-height: 1;
  }

  .quote-panel {
    padding: 14px;
  }

  .site-footer {
    padding-bottom: 88px;
  }

  .footer-brand-block {
    grid-template-columns: 1fr;
  }

  .footer-call-panel {
    padding: 18px;
  }

  .mobile-sticky-cta {
    position: sticky;
    bottom: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px;
    background: rgba(7, 7, 7, 0.95);
    border-top: 2px solid var(--accent);
  }

  .mobile-sticky-cta .button {
    width: 100%;
  }
}
