.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--color-navy);
  border-bottom: 1px solid var(--color-line-on-navy);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-block: var(--space-3);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-width: 0;
  flex: 1 1 auto;
}

.wordmark {
  font-family: var(--font-display);
  color: var(--color-white);
  text-decoration: none;
  font-size: clamp(0.8rem, 3.8vw, 1.1rem);
  line-height: 1.2;
  min-width: 0;
}

.wordmark__logo {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-white);
  cursor: zoom-in;
}

.wordmark__name {
  min-width: 0;
  overflow-wrap: break-word;
}

.wordmark__name span {
  color: var(--color-gold);
  display: block;
}

@media (min-width: 480px) {
  .wordmark__name span {
    display: inline;
  }
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  order: 1;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--color-line-on-navy);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-navy);
  border-bottom: 1px solid var(--color-line-on-navy);
}

.site-nav.is-open {
  display: block;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: var(--space-3) var(--content-padding) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.site-nav__list a {
  display: block;
  padding: var(--space-3) var(--space-2);
  text-decoration: none;
  color: var(--color-white);
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.site-nav__list a:hover,
.site-nav__list a[aria-current="page"] {
  background: rgba(245, 166, 35, 0.18);
  color: var(--color-gold);
}

.site-header .header-cta {
  display: none;
}

@media (min-width: 900px) {
  .site-header .header-cta {
    display: inline-flex;
  }
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(500px, 82vh, 820px);
  overflow: hidden;
  background: var(--color-navy);
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 22, 45, 0.3) 0%,
    rgba(11, 22, 45, 0.5) 45%,
    rgba(7, 16, 34, 0.92) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  padding-block: var(--space-8);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.hero__content h1 {
  color: var(--color-white);
}

.hero__content .eyebrow {
  color: var(--color-gold);
}

.hero__lead {
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.92);
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide {
    transition: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.875rem 1.5rem;
  min-height: 48px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--step-body);
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform 0.12s ease,
    background-color 0.12s ease,
    border-color 0.12s ease;
}

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

.btn--whatsapp {
  background: var(--color-gold);
  color: var(--color-navy-dark);
}

.btn--whatsapp:hover {
  background: var(--color-gold-dark);
}

.btn--call {
  background: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn--call:hover {
  background: rgba(255, 255, 255, 0.12);
}

.section:not(.section--navy) .btn--call {
  border-color: var(--color-navy);
  color: var(--color-navy);
}

.section:not(.section--navy) .btn--call:hover {
  background: rgba(32, 48, 80, 0.08);
}

.field {
  display: block;
}

.field__label {
  display: block;
  margin-bottom: var(--space-2);
  font-weight: 700;
}

.field__control {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  font: inherit;
}

select.field__control {
  background: var(--color-white);
}

textarea.field__control {
  resize: vertical;
}

.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: var(--sticky-bar-height);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
}

.sticky-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  text-decoration: none;
  font-weight: 700;
}

.sticky-bar__call {
  background: var(--color-navy);
  color: var(--color-white);
}

.sticky-bar__whatsapp {
  background: var(--color-gold);
  color: var(--color-navy-dark);
}

@media (min-width: 900px) {
  .sticky-bar {
    display: none;
  }
}

.card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}

.section--navy .card {
  background: var(--color-navy-light);
  border-color: var(--color-line-on-navy);
}

.code-card {
  text-align: center;
}

.code-card__number {
  font-family: var(--font-display);
  font-size: 2.75rem;
  color: var(--color-gold-dark);
  display: block;
  margin-bottom: var(--space-2);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--step-body);
}

.pricing-table caption {
  text-align: left;
  margin-bottom: var(--space-3);
  color: var(--color-ink-muted);
}

.pricing-table th,
.pricing-table td {
  text-align: left;
  padding: var(--space-3) var(--space-3);
  border-bottom: 1px solid var(--color-line);
  vertical-align: top;
}

.pricing-table thead th {
  font-family: var(--font-body);
  font-size: var(--step-caption);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-ink-muted);
}

.pricing-table td.price {
  font-family: var(--font-display);
  color: var(--color-navy);
  white-space: nowrap;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr.is-featured td {
  background: rgba(245, 166, 35, 0.16);
}

.pricing-split__caption {
  margin-top: var(--space-3);
  color: var(--color-ink-muted);
}

.pricing-split {
  display: grid;
  gap: var(--space-5);
  margin-top: var(--space-5);
}

.pricing-split__col + .pricing-split__col {
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-line);
}

.pricing-split__title {
  margin-bottom: var(--space-3);
  font-size: var(--step-h3);
}

.pricing-split__footnote {
  margin-top: var(--space-4);
  color: var(--color-ink-muted);
}

@media (min-width: 900px) {
  .pricing-split {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-7);
  }

  .pricing-split__col + .pricing-split__col {
    padding-top: 0;
    padding-left: var(--space-7);
    border-top: none;
    border-left: 1px solid var(--color-line);
  }
}

.pricing-table__note {
  display: block;
  margin-top: 4px;
  font-size: var(--step-caption);
  color: var(--color-ink-muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
  background: rgba(22, 34, 60, 0.85);
  backdrop-filter: blur(4px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox__dialog {
  position: relative;
  width: min(92vw, 900px);
  max-height: 90vh;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.lightbox__image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #141d31;
  max-height: 78vh;
}

.lightbox__image {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(22, 34, 60, 0.85);
  color: var(--color-white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox__close:hover,
.lightbox__close:focus-visible {
  background: rgba(245, 166, 35, 0.3);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: var(--space-2) 0;
  border-bottom: 1px dashed var(--color-line);
}

.section--navy .hours-table td {
  border-bottom-color: var(--color-line-on-navy);
}

.hours-table td:last-child {
  text-align: right;
  font-family: var(--font-body);
  font-weight: 700;
}

.flag-closed {
  color: var(--color-red);
  font-weight: 700;
}

.photo-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 78%;
  gap: var(--space-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--space-2);
}

.photo-strip img {
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (min-width: 900px) {
  .photo-strip {
    grid-auto-columns: 30%;
  }
}

.site-footer {
  background: var(--color-navy-dark);
  color: var(--color-white);
  padding-block: var(--space-7);
}

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

.site-footer a:hover {
  color: var(--color-gold);
}

.site-footer__grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .site-footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.site-footer small {
  display: block;
  margin-top: var(--space-6);
  color: rgba(255, 255, 255, 0.6);
}

.truck {
  --navy: #1e2e4f;
  --yellow: #f5a623;
  --wheel: 44px;
  --ground: 14px;
  --lift: 26px;
  --deck: 12px;
  --card: 190px;
  --cab: 112px;
  --cargo-gap: 18px;
  --photo-h: 400px;
  position: relative;
}

.truck .scene {
  position: relative;
  max-width: 540px;
  margin: 0 auto;
  height: calc(var(--ground) + var(--lift) + var(--deck) + var(--card));
  transform: translateX(100vw);
}

.truck.is-visible .scene {
  animation: truck-drive-in 6s cubic-bezier(0.16, 0.84, 0.44, 1) 1.1s both;
}

@keyframes truck-drive-in {
  from {
    transform: translateX(100vw);
  }
  to {
    transform: translateX(0);
  }
}

.truck .rig {
  position: absolute;
  inset: 0;
  animation: truck-bob 1.05s ease-in-out infinite;
}

@keyframes truck-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1.5px);
  }
}

.truck .road {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--ground);
}
.truck .road::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(var(--ground) - 3px);
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
}
.truck .road::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 4px;
  border-radius: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--yellow) 0 30px,
    transparent 30px 72px
  );
  animation: truck-tarmac 0.55s linear infinite;
}
@keyframes truck-tarmac {
  to {
    background-position: 72px 0;
  }
}

.truck .cab {
  position: absolute;
  bottom: calc(var(--ground) + var(--lift));
  left: 0;
  width: 150px;
  height: var(--cab);
  z-index: 6;
}
.truck .cab svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.truck .deck {
  position: absolute;
  bottom: calc(var(--ground) + var(--lift));
  left: 96px;
  right: 0;
  height: var(--deck);
  z-index: 2;
  background: linear-gradient(180deg, #f2f5f9 0 45%, var(--navy) 45% 100%);
  border-radius: 0 2px 2px 0;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.18);
}
.truck .deck::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 6px;
  top: 1px;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    rgba(30, 46, 79, 0.22) 0 1px,
    transparent 1px 14px
  );
}
.truck .headboard {
  position: absolute;
  bottom: calc(var(--ground) + var(--lift) + var(--deck));
  left: 110px;
  width: 15px;
  height: 72px;
  z-index: 3;
  background:
    linear-gradient(
      180deg,
      transparent 0 8px,
      rgba(30, 46, 79, 0.28) 8px 10px,
      transparent 10px
    ),
    linear-gradient(
      180deg,
      transparent 0 30px,
      rgba(30, 46, 79, 0.2) 30px 32px,
      transparent 32px
    ),
    linear-gradient(90deg, #edf1f6 0 70%, #d5dde8 70% 100%);
  border: 1.5px solid #a9b6c7;
  box-sizing: border-box;
  border-radius: 2px 2px 0 0;
}
.truck .headboard::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -4px;
  width: 23px;
  height: 6px;
  border-radius: 2px;
  background: var(--navy);
}

.truck .wheel {
  position: absolute;
  bottom: var(--ground);
  width: var(--wheel);
  height: var(--wheel);
  z-index: 5;
}
.truck .wheel.front,
.truck .wheel.rear {
  z-index: 3;
}
.truck .wheel .spin {
  transform-origin: 50% 50%;
  animation: truck-roll 0.55s linear infinite;
}
@keyframes truck-roll {
  to {
    transform: rotate(-360deg);
  }
}

.truck .stage {
  position: absolute;
  bottom: calc(var(--ground) + var(--lift) + var(--deck) - 2px);
  left: 130px;
  right: 8px;
  height: var(--card);
  z-index: 1;
}
.truck__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: var(--cargo-gap);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.truck__slide.is-active {
  opacity: 1;
}
.truck__photo {
  display: block;
  height: var(--photo-h);
  width: auto;
  max-width: calc((100% - var(--cargo-gap)) / 2);
  box-sizing: border-box;
  object-fit: cover;
  object-position: top center;
  border: 4px solid #fff;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(15, 24, 41, 0.22);
  cursor: zoom-in;
}

.truck__photo:only-child {
  max-width: 100%;
}

.truck .speed {
  position: absolute;
  right: 0;
  bottom: calc(var(--ground) + var(--lift) + 24px);
  width: 76px;
  height: 38px;
  z-index: 0;
  opacity: 0.5;
}
.truck .speed i {
  position: absolute;
  right: 0;
  height: 3px;
  border-radius: 2px;
  background: var(--yellow);
  animation: truck-whoosh 0.65s linear infinite;
}
.truck .speed i:nth-child(1) {
  top: 2px;
  width: 28px;
  animation-delay: 0s;
}
.truck .speed i:nth-child(2) {
  top: 14px;
  width: 46px;
  animation-delay: 0.16s;
}
.truck .speed i:nth-child(3) {
  top: 26px;
  width: 20px;
  animation-delay: 0.32s;
}
@keyframes truck-whoosh {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  30% {
    opacity: 0.9;
  }
  100% {
    transform: translateX(40px);
    opacity: 0;
  }
}

.truck .scene.paused * {
  animation-play-state: paused !important;
}

@media (prefers-reduced-motion: reduce) {
  .truck .scene,
  .truck .scene * {
    animation: none !important;
  }
  .truck .scene {
    transform: none !important;
  }
  .truck__slide {
    transition: none;
  }
  .truck .speed {
    display: none;
  }
}

@media (max-width: 640px) {
  .truck {
    --wheel: 32px;
    --ground: 10px;
    --lift: 18px;
    --deck: 8px;
    --card: 136px;
    --cab: 78px;
    --cargo-gap: 10px;
    --photo-h: 150px;
  }
  .truck .cab {
    width: 104px;
  }
  .truck .deck {
    left: 66px;
  }
  .truck .headboard {
    left: 76px;
    width: 10px;
    height: 50px;
  }
  .truck .headboard::before {
    top: -4px;
    left: -3px;
    width: 16px;
    height: 5px;
  }
  .truck .stage {
    left: 90px;
    right: 5px;
  }
  .truck .wheel.front {
    left: 40px !important;
  }
  .truck .wheel.rear {
    right: 34px !important;
  }
  .truck .speed {
    display: none;
  }
}

.truck--preview {
  --photo-h: 200px;
}

@media (max-width: 640px) {
  .truck--preview {
    --photo-h: 130px;
  }
}

.projector {
  --navy: #1e2e4f;
  --yellow: #f5a623;
}

.projector .scene {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  aspect-ratio: 560 / 380;
}

.projector .layer {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.projector .screen {
  position: absolute;
  left: 31.07%;
  top: 6.32%;
  width: 63.57%;
  height: 69.47%;
  overflow: hidden;
  background: #edf1f6;
  z-index: 2;
}

.projector .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 0.55s ease,
    transform 0.8s ease;
  background: #dce3ec;
}

.projector .slide.on {
  opacity: 1;
  transform: scale(1);
}

.projector .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}

.projector .glare {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(255, 216, 140, 0.2) 0%,
    rgba(255, 228, 170, 0.06) 34%,
    transparent 62%
  );
  animation: pj-flicker 3.6s ease-in-out infinite;
}

@keyframes pj-flicker {
  0%,
  100% {
    opacity: 1;
  }
  45% {
    opacity: 0.86;
  }
  70% {
    opacity: 0.95;
  }
}

.projector .beam {
  z-index: 1;
  pointer-events: none;
  animation: pj-flicker 3.6s ease-in-out infinite;
}

.projector .motes {
  z-index: 4;
  pointer-events: none;
}

.projector .motes circle {
  animation: pj-drift linear infinite;
  opacity: 0;
}

@keyframes pj-drift {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  15% {
    opacity: 0.9;
  }
  85% {
    opacity: 0.5;
  }
  100% {
    transform: translate(150px, -58px);
    opacity: 0;
  }
}

.projector .led {
  animation: pj-blink 2.2s steps(1, end) infinite;
}

@keyframes pj-blink {
  0%,
  70% {
    opacity: 1;
  }
  71%,
  100% {
    opacity: 0.25;
  }
}

.projector .count {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 5;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(30, 46, 79, 0.82);
  font:
    600 11px/1 system-ui,
    sans-serif;
  color: #fff;
  letter-spacing: 0.08em;
}

.projector .count b {
  color: var(--yellow);
}

.projector .scene.paused * {
  animation-play-state: paused !important;
}

@media (prefers-reduced-motion: reduce) {
  .projector .scene * {
    animation: none !important;
  }
  .projector .slide {
    transition: opacity 0.3s ease;
  }
  .projector .motes {
    display: none;
  }
}

.fleet__lede {
  max-width: 50ch;
  color: var(--color-ink-muted);
  font-size: var(--step-body-lg);
}

.fleet__grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: var(--space-6);
}

.fleet__card {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: var(--color-navy-dark);
  aspect-ratio: 16 / 10;
  box-shadow: 0 4px 14px rgba(19, 31, 53, 0.1);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.fleet__card:hover,
.fleet__card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(19, 31, 53, 0.22);
}

.fleet__card--wide {
  grid-column: 1 / -1;
  aspect-ratio: 21 / 9;
}

.fleet__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.fleet__card:hover img {
  transform: scale(1.06);
}

.fleet__card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(19, 31, 53, 0.93) 0%,
    rgba(19, 31, 53, 0.66) 30%,
    rgba(19, 31, 53, 0.14) 56%,
    rgba(19, 31, 53, 0.18) 100%
  );
}

.fleet__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  pointer-events: none;
  background: var(--color-gold);
  color: var(--color-navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.fleet__cap {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  pointer-events: none;
  color: #fff;
}

.fleet__cap h3 {
  margin: 0 0 3px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: #fff;
}

.fleet__cap p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #d7dee9;
}

.fleet__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 11px;
}

.fleet__tags span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 4px 9px;
  border-radius: 5px;
}

.fleet__note {
  margin-top: var(--space-6);
  color: var(--color-ink-muted);
  font-size: var(--step-caption);
}

.fleet__note a {
  color: var(--color-navy);
  font-weight: 700;
}

@media (max-width: 640px) {
  .fleet__card--wide {
    aspect-ratio: 4 / 3;
  }
  .fleet__cap h3 {
    font-size: 18px;
  }
  .fleet__cap p {
    font-size: 0.84rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fleet__card,
  .fleet__card img {
    transition: none;
  }
  .fleet__card:hover,
  .fleet__card:focus-within {
    transform: none;
  }
  .fleet__card:hover img {
    transform: none;
  }
}
