:root {
  --black: #070707;
  --panel: #111;
  --gold: #d6a72e;
  --gold2: #f5cf64;
  --cream: #f7f5ef;
  --line: #e4dfd3;
  --muted: #706e68;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: #171717;
  font-family: Inter, Arial, Helvetica, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}
.nav {
  height: 88px;
  background: #050505;
  color: #fff;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #242424;
}
.nav .wrap {
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand {
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 150px;
  height: 70px;
  object-fit: contain;
}
.tagline {
  color: #aaa;
  font-size: 9px;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-left: 1px solid #393939;
  padding-left: 14px;
}
.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
  color: #ddd;
}
.nav-links a:hover,
.nav-links .active {
  color: var(--gold2);
}
.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold2);
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 900;
}
.hero {
  background: #080808;
  color: #fff;
  padding: 105px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero:after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  right: -120px;
  top: -180px;
  background: radial-gradient(circle, #5a410f 0, #1b1509 35%, transparent 70%);
  opacity: 0.75;
}
.courier-hero {
  background-image:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.96) 0%,
      rgba(5, 5, 5, 0.8) 48%,
      rgba(5, 5, 5, 0.18) 100%
    ),
    url("/assets/courier-hero.jpg");
  background-size: cover;
  background-position: center 48%;
}
.courier-hero:after {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.2),
    rgba(214, 167, 46, 0.12)
  );
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  right: 0;
  top: 0;
  opacity: 1;
}
.towing-hero {
  background-image:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.96) 0%,
      rgba(5, 5, 5, 0.78) 48%,
      rgba(5, 5, 5, 0.16) 100%
    ),
    url("/assets/towing-hero.jpg");
  background-size: cover;
  background-position: center 54%;
}
.towing-hero:after {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.2),
    rgba(214, 167, 46, 0.12)
  );
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  right: 0;
  top: 0;
  opacity: 1;
}
.hero .wrap {
  position: relative;
  z-index: 1;
}
.eyebrow,
.kicker {
  color: var(--gold2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(48px, 6.8vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  max-width: 900px;
  margin: 20px 0 24px;
}
.hero h1 span {
  background: linear-gradient(100deg, #bd8619, #ffe58b, #c99525);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  max-width: 680px;
  color: #b6b6b6;
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 32px;
}
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid #393939;
  color: #fff;
}
.btn.gold {
  background: linear-gradient(120deg, #c28a17, #f3d778);
  border: 0;
  color: #080808;
}
.stats {
  background: #111;
  color: #fff;
  border-top: 1px solid #292929;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat {
  padding: 23px;
  border-right: 1px solid #292929;
}
.stat:first-child {
  padding-left: 0;
}
.stat:last-child {
  border: 0;
}
.stat b {
  display: block;
  font-size: 14px;
}
.stat span {
  font-size: 10px;
  color: #8d8d8d;
}
.section {
  padding: 95px 0;
}
.heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 36px;
}
.heading h2 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 10px 0 0;
}
.heading p {
  max-width: 450px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px;
  min-height: 220px;
}
.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #111;
  color: var(--gold2);
  display: grid;
  place-items: center;
  font-size: 22px;
}
.card h3 {
  font-size: 21px;
  margin: 24px 0 9px;
}
.card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}
.dark {
  background: #090909;
  color: #fff;
}
.dark .heading p {
  color: #999;
}
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #343434;
}
.step {
  padding: 28px 22px;
  border-right: 1px solid #343434;
}
.step:last-child {
  border: 0;
}
.step i {
  font-style: normal;
  color: var(--gold2);
  font-size: 12px;
}
.step h3 {
  font-size: 17px;
  margin: 24px 0 8px;
}
.step p {
  font-size: 12px;
  line-height: 1.6;
  color: #969696;
}
.quote {
  background: #fff;
  border: 1px solid var(--line);
  padding: 34px;
  box-shadow: 0 20px 50px #0000000d;
}
.quote-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 22px;
}
.quote h2 {
  font-size: 30px;
  margin: 7px 0 0;
}
.quote form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.quote label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #606060;
}
.quote input,
.quote select,
.quote textarea {
  width: 100%;
  display: block;
  margin-top: 7px;
  border: 1px solid #dedad1;
  background: #fbfaf7;
  padding: 13px;
  border-radius: 3px;
  color: #111;
}
.quote textarea {
  min-height: 95px;
  resize: vertical;
}
.quote .full {
  grid-column: 1/-1;
}
.quote button {
  grid-column: 1/-1;
  background: #101010;
  color: #fff;
  border: 0;
  height: 52px;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}
.banner {
  background: linear-gradient(120deg, #a9730d, #f1ce68);
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin: 0 auto 80px;
}
.banner h2 {
  font-size: clamp(32px, 4vw, 54px);
  letter-spacing: -0.05em;
  margin: 7px 0;
}
.banner p {
  margin: 0;
  font-size: 13px;
}
.banner a {
  background: #080808;
  color: #fff;
  padding: 18px 22px;
  min-width: 220px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}
.footer {
  background: #050505;
  color: #bbb;
  padding: 58px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.25fr 1fr;
  gap: 42px;
}
.footer-logo {
  width: 150px;
}
.footer h4 {
  color: var(--gold2);
  font-size: 9px;
  letter-spacing: 0.14em;
  margin: 0 0 13px;
}
.footer p,
.footer a {
  font-size: 12px;
  line-height: 1.8;
  margin: 0;
  display: block;
}
.copyright {
  border-top: 1px solid #292929;
  margin-top: 42px;
  padding-top: 20px;
  color: #666;
  font-size: 10px;
}
.wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  z-index: 30;
  box-shadow: 0 10px 30px #0005;
}
.media-showcase {
  background: #f0ede5;
}
.courier-gallery,
.towing-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.courier-gallery figure,
.towing-gallery figure {
  margin: 0;
  min-height: 310px;
  position: relative;
  overflow: hidden;
  background: #111;
}
.courier-gallery img,
.towing-gallery img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.courier-gallery figure:hover img,
.towing-gallery figure:hover img {
  transform: scale(1.035);
}
.courier-gallery figure:after,
.towing-gallery figure:after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, #050505d9);
}
.courier-gallery figcaption,
.towing-gallery figcaption {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 16px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.video-section {
  margin-top: 34px;
}
.video-intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 16px;
}
.video-intro h3 {
  margin: 0;
  font-size: 24px;
}
.media-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.65fr);
  gap: 22px;
  align-items: stretch;
}
.service-photo {
  margin: 0;
  background: #0a0a0a;
  position: relative;
  min-height: 610px;
  overflow: hidden;
}
.service-photo img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}
.service-photo:after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, #050505e8);
}
.service-photo figcaption {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: 28px;
  color: #fff;
}
.service-photo figcaption b {
  display: block;
  font-size: 24px;
  margin-bottom: 8px;
}
.service-photo figcaption span {
  color: #ccc;
  font-size: 13px;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.video-card {
  background: #080808;
  padding: 10px;
  display: flex;
  flex-direction: column;
}
.video-frame {
  position: relative;
  flex: 1;
  min-height: 535px;
  background: #181818;
  overflow: hidden;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-card > a {
  color: var(--gold2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 15px 7px 7px;
  text-align: center;
}
.video-card > a:hover {
  color: #fff;
}
@media (max-width: 900px) {
  .courier-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .towing-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .media-layout {
    grid-template-columns: 1fr;
  }
  .service-photo {
    min-height: 470px;
  }
  .video-frame {
    min-height: 620px;
  }
  .nav {
    height: auto;
    padding: 8px 0;
  }
  .nav .wrap {
    flex-wrap: wrap;
  }
  .nav-links {
    display: flex;
    order: 3;
    width: 100%;
    justify-content: space-between;
    border-top: 1px solid #242424;
    padding-top: 10px;
    gap: 10px;
  }
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .step {
    border-bottom: 1px solid #343434;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .courier-hero {
    background-position: 64% center;
  }
  .towing-hero {
    background-position: 62% center;
  }
  .courier-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .towing-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .courier-gallery figure {
    min-height: 220px;
  }
  .towing-gallery figure {
    min-height: 220px;
  }
  .courier-gallery figcaption {
    left: 12px;
    bottom: 11px;
    font-size: 10px;
  }
  .towing-gallery figcaption {
    left: 12px;
    bottom: 11px;
    font-size: 10px;
  }
  .video-intro {
    display: block;
  }
  .video-intro h3 {
    margin-top: 7px;
  }
  .service-photo {
    min-height: 360px;
  }
  .service-photo figcaption {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .service-photo figcaption b {
    font-size: 19px;
  }
  .video-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .video-frame {
    min-height: 620px;
  }
  .wrap {
    width: min(100% - 32px, 1180px);
  }
  .nav {
    height: 74px;
  }
  .brand {
    gap: 8px;
  }
  .brand img {
    width: 82px;
    height: 56px;
  }
  .tagline {
    font-size: 7px;
    letter-spacing: 0.05em;
    padding-left: 8px;
    max-width: 105px;
  }
  .nav-cta {
    padding: 10px 12px;
  }
  .hero {
    padding: 75px 0 65px;
  }
  .hero h1 {
    font-size: 46px;
  }
  .hero p {
    font-size: 15px;
  }
  .stats-grid,
  .cards,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stat {
    border-right: 0;
    border-bottom: 1px solid #292929;
    padding-left: 0;
  }
  .section {
    padding: 72px 0;
  }
  .heading,
  .quote-top {
    display: block;
  }
  .heading p {
    margin-top: 18px;
  }
  .card {
    min-height: 0;
  }
  .quote {
    padding: 24px 18px;
  }
  .quote form {
    grid-template-columns: 1fr;
  }
  .quote .full {
    grid-column: auto;
  }
  .banner {
    padding: 34px 24px;
    display: block;
    margin-bottom: 55px;
  }
  .banner a {
    display: block;
    margin-top: 22px;
  }
  .step {
    border-right: 0;
    padding-left: 0;
  }
}
