
:root {
  --red: #d90b0b;
  --red-dark: #b90000;
  --ink: #111315;
  --muted: #62686d;
  --line: #dde1e3;
  --paper: #f5f5f2;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

svg {
  width: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  min-height: 88px;
  padding: 14px clamp(24px, 5vw, 78px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
}

.brand {
  width: clamp(180px, 17vw, 252px);
}

.brand img {
  width: 100%;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.site-header nav {
  display: flex;
  gap: clamp(22px, 3vw, 48px);
  font-size: 0.93rem;
  font-weight: 700;
}

.site-header nav a {
  position: relative;
  padding: 10px 0;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--red);
  color: var(--red);
  font-size: 0.88rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--red);
  color: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 47%) minmax(0, 53%);
  min-height: min(810px, calc(100vh - 88px));
  background: var(--paper);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 7vw, 112px) clamp(34px, 5vw, 78px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 26px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::after {
  width: 74px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1,
.section h2,
.fleet-section h2,
.contact-section h2 {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-weight: 700;
  letter-spacing: 0.005em;
}

.hero h1 {
  max-width: 710px;
  margin: 0;
  font-size: clamp(3.2rem, 5.25vw, 6.05rem);
  line-height: 0.97;
}

.hero-intro {
  max-width: 610px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.22rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 26px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
}

.button-secondary {
  border-color: var(--red);
  background: transparent;
  color: var(--red);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--red);
  color: var(--white);
}

.hero-details {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.hero-details > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-details p {
  margin: 0;
  color: #3f4448;
  font-size: 0.82rem;
}

.detail-icon {
  color: var(--red);
  font-size: 1.5rem;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #d8dbdc;
}

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

.hero-visual::after {
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(transparent, rgba(10, 12, 14, 0.48));
  content: "";
}

.service-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 7px;
  max-width: 250px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(15, 18, 20, 0.78);
  color: var(--white);
  backdrop-filter: blur(9px);
}

.service-card span {
  color: #ff4b4b;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card strong {
  font-size: 0.95rem;
}

.service-card-top {
  top: 7%;
  right: 5%;
}

.service-card-bottom {
  right: 5%;
  bottom: 7%;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-strip p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 88px;
  margin: 0;
  border-right: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-strip p:last-child {
  border: 0;
}

.trust-strip span {
  color: var(--red);
}

.section {
  padding: clamp(86px, 9vw, 150px) clamp(24px, 6vw, 96px);
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.7fr);
  gap: 60px;
  align-items: end;
  max-width: 1240px;
  margin: 0 auto 62px;
}

.section h2,
.fleet-section h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(2.55rem, 4.2vw, 4.8rem);
  line-height: 1.02;
}

.section-heading > p,
.fleet-copy > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1240px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-item {
  min-height: 275px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, transform 180ms ease;
}

.service-item:hover {
  z-index: 1;
  background: var(--paper);
  transform: translateY(-4px);
}

.service-item > span {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
}

.service-item h3 {
  margin: 42px 0 15px;
  font-size: 1.25rem;
}

.service-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.fleet-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(60px, 9vw, 140px);
  padding: clamp(90px, 10vw, 160px) clamp(24px, 7vw, 110px);
  background: var(--ink);
  color: var(--white);
}

.eyebrow-light {
  color: #ff4242;
}

.fleet-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 28px;
  color: #b9bec2;
}

.fleet-copy .button {
  margin-top: 34px;
}

.fleet-steps {
  border-top: 1px solid #42474b;
}

.fleet-steps article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid #42474b;
}

.fleet-steps > article > span {
  color: #ff4242;
  font-size: 0.78rem;
  font-weight: 900;
}

.fleet-steps h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.fleet-steps p {
  margin: 0;
  color: #aeb4b8;
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: center;
  padding: clamp(75px, 8vw, 120px) clamp(24px, 7vw, 110px);
  background: var(--red);
  color: var(--white);
}

.contact-section .eyebrow {
  color: var(--white);
}

.contact-section h2 {
  max-width: 850px;
}

.contact-actions {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

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

.button-outline-white {
  border-color: var(--white);
  color: var(--white);
}

.button-outline-white:hover,
.button-outline-white:focus-visible {
  background: var(--white);
  color: var(--red);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 1.15rem;
  font-weight: 900;
}

.phone-link svg {
  width: 1.15em;
  height: 1.15em;
}

footer {
  display: grid;
  grid-template-columns: minmax(170px, 250px) 1fr auto;
  gap: 50px;
  align-items: center;
  padding: 42px clamp(24px, 6vw, 96px);
  background: #0d0f10;
  color: #b7bdc0;
  font-size: 0.8rem;
}

footer img {
  width: 220px;
}

footer p {
  margin: 5px 0;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

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

  .hero-copy {
    min-height: auto;
  }

  .hero-visual {
    min-height: 620px;
  }

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

  .fleet-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-items: start;
  }

  .contact-buttons {
    justify-content: flex-start;
  }

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

  footer > p:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 72px;
    padding: 10px 18px;
  }

  .brand {
    width: 152px;
  }

  .brand img {
    height: 44px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0;
  }

  .header-cta svg {
    width: 22px;
    font-size: 1rem;
  }

  .hero-copy {
    padding: 58px 20px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

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

  .hero-visual {
    min-height: 500px;
  }

  .service-card {
    right: 16px;
    left: 16px;
    max-width: none;
  }

  .service-card-top {
    top: 18px;
  }

  .service-card-bottom {
    bottom: 18px;
  }

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

  .trust-strip p {
    justify-content: flex-start;
    min-height: 62px;
    padding: 0 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .service-item {
    min-height: 240px;
  }

  .contact-section {
    gap: 38px;
  }

  .contact-actions,
  .contact-buttons,
  .contact-actions .button {
    width: 100%;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  footer > p:last-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * {
    animation: reveal 500ms both;
  }

  .hero-copy > *:nth-child(2) { animation-delay: 70ms; }
  .hero-copy > *:nth-child(3) { animation-delay: 130ms; }
  .hero-copy > *:nth-child(4) { animation-delay: 190ms; }
  .hero-copy > *:nth-child(5) { animation-delay: 250ms; }

  @keyframes reveal {
    from {
      opacity: 0;
      transform: translateY(12px);
    }
  }
}
