:root {
  --ink: #111111;
  --muted: #6c7179;
  --paper: #f7f3ec;
  --white: #ffffff;
  --red: #df1616;
  --red-dark: #a70f0f;
  --gold: #f2b544;
  --charcoal: #080909;
  --line: #ddd4c7;
  --dark-line: rgba(255, 255, 255, 0.14);
  --shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 92px;
  padding: 10px clamp(18px, 5vw, 58px);
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.brand img {
  width: 118px;
  height: 74px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav a,
.header-call {
  text-decoration: none;
}

.header-call {
  padding: 14px 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 14px 26px rgba(223, 22, 22, 0.28);
  white-space: nowrap;
}

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

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.72) 38%, rgba(0, 0, 0, 0.24) 74%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.45), transparent 44%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("worker.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

.hero-content {
  width: min(720px, calc(100% - 36px));
  padding: clamp(44px, 8vw, 88px) 0 clamp(46px, 8vw, 82px);
  margin-left: clamp(18px, 6vw, 74px);
  color: var(--white);
}

.hero-logo {
  width: clamp(130px, 18vw, 190px);
  margin-bottom: 18px;
  filter: drop-shadow(0 15px 24px rgba(0, 0, 0, 0.36));
}

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

.hero .eyebrow {
  color: var(--red);
  font-size: clamp(0.92rem, 2vw, 1.25rem);
}

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

h1 {
  max-width: 740px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 6.1rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 span {
  display: block;
  color: var(--red);
}

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

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

.hero-copy {
  max-width: 610px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary,
.button.submit {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 12px 22px rgba(223, 22, 22, 0.25);
}

.button.secondary {
  background: rgba(0, 0, 0, 0.26);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.button:hover,
.header-call:hover {
  transform: translateY(-1px);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 0;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: var(--white);
}

.trust-strip div {
  padding: 22px clamp(18px, 5vw, 64px);
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

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

.trust-strip strong {
  font-size: 1.1rem;
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.86);
}

.trust-strip span,
.section p,
.photo-band p,
.footer p,
.privacy,
.form-note {
  color: var(--muted);
}

.trust-strip span,
.photo-band p,
.footer p {
  color: rgba(255, 255, 255, 0.84);
}

.section {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 6vw, 74px);
}

.services {
  background:
    radial-gradient(circle at top left, rgba(223, 22, 22, 0.18), transparent 34%),
    var(--charcoal);
  color: var(--white);
}

.services .eyebrow {
  color: var(--red);
}

.services h2,
.services h3 {
  color: var(--white);
}

.services p {
  color: rgba(255, 255, 255, 0.76);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: start;
}

.services-intro {
  width: min(880px, 100%);
  margin-bottom: 24px;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

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

.service-options article,
.service-grid article {
  min-height: 158px;
  padding: 22px;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

.service-options article {
  min-height: 122px;
}

.service-category ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.75);
}

.service-category li::marker {
  color: var(--red);
}

.photo-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(42px, 6vw, 72px) clamp(18px, 6vw, 74px);
  background: linear-gradient(135deg, var(--red-dark), #141414 58%);
  color: var(--white);
}

.photo-band img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.areas {
  text-align: center;
}

.why-choose-us {
  background: var(--paper);
}

.why-copy {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 36px);
  border-left: 6px solid var(--red);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.why-copy h2 {
  width: min(780px, 100%);
}

.why-copy p:not(.eyebrow) {
  font-size: 1.05rem;
}

.areas h2 {
  width: min(900px, 100%);
  margin-right: auto;
  margin-left: auto;
}

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

.area-list span {
  padding: 12px 16px;
  border: 1px solid rgba(223, 22, 22, 0.2);
  border-radius: 999px;
  background: var(--white);
  font-weight: 800;
}

.schedule {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 62px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.78)),
    url("junk-trailer.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.schedule h2,
.schedule .eyebrow {
  color: var(--white);
}

.schedule p {
  color: rgba(255, 255, 255, 0.78);
}

.schedule-copy {
  align-self: start;
}

.pickup-form {
  display: grid;
  gap: 15px;
  padding: clamp(18px, 4vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

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

input,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #cfc7ba;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(236, 31, 25, 0.18);
  border-color: var(--red);
}

.form-row label {
  flex: 1 1 180px;
}

.privacy {
  margin: 0;
  font-size: 0.9rem;
}

.footer {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  padding: 28px clamp(18px, 6vw, 74px);
  background: #111111;
  color: var(--white);
}

.footer img {
  width: 84px;
}

.footer div {
  flex: 1;
}

.footer p {
  margin-bottom: 0;
}

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

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: center;
    gap: 10px;
    min-height: 76px;
    padding: 8px 16px;
  }

  .nav {
    display: none;
  }

  .brand img {
    width: 94px;
    height: 58px;
  }

  .header-call {
    padding: 10px 12px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: calc(100svh - 76px);
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.92)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.18));
  }

  .hero-media {
    background-position: center top;
  }

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

  .hero-logo {
    width: 132px;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .trust-strip,
  .split,
  .service-options,
  .photo-band,
  .schedule {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

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

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .header-call {
    max-width: 176px;
    padding: 9px 10px;
    font-size: 0.78rem;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2rem;
  }

  .button {
    width: 100%;
  }

  .service-options article,
  .service-grid article,
  .pickup-form,
  .why-copy {
    padding: 18px;
  }
}
