.fleet-showcase {
  padding: 86px 0 92px;
  background: #fbf7ef;
}
.fleet-showcase .section-head { margin-bottom: 34px; }
.fleet-showcase .section-head .eyebrow {
  color: #96521e;
  font-size: .68rem;
  letter-spacing: .17em;
}
.fleet-showcase .section-head h2 {
  margin-top: 11px;
  color: #352217;
  font-size: clamp(2.25rem, 4vw, 3.55rem);
  letter-spacing: -.025em;
}
.fleet-showcase .section-sub {
  max-width: 540px;
  margin-top: 13px;
  font-size: .98rem;
  line-height: 1.68;
}
.fleet-showcase .taxi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 344px;
  gap: 20px;
  align-items: stretch;
}
.fleet-showcase .taxi-card {
  display: flex;
  min-height: 344px;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border: 1px solid #e3d0ba;
  border-radius: 18px;
  background: #fffdf9;
  box-shadow: 0 8px 22px rgba(67, 39, 18, .08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.fleet-showcase .taxi-card:hover {
  transform: translateY(-4px);
  border-color: #d6a872;
  box-shadow: 0 17px 33px rgba(67, 39, 18, .13);
}
.fleet-showcase .home-vehicle-image {
  display: grid;
  height: 198px;
  flex: 0 0 198px;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid #eadbca;
  background: #f4ede3;
}
.fleet-showcase .home-vehicle-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(var(--vehicle-scale, .86));
  transition: transform .35s ease;
}
.fleet-showcase .taxi-card:hover .home-vehicle-image img {
  transform: scale(calc(var(--vehicle-scale, .86) + .025));
}
.fleet-showcase .taxi-card:nth-child(1) .home-vehicle-image img { --vehicle-scale: .84; }
.fleet-showcase .taxi-card:nth-child(2) .home-vehicle-image img { --vehicle-scale: .84; }
.fleet-showcase .taxi-card:nth-child(3) .home-vehicle-image img { --vehicle-scale: .86; }
.fleet-showcase .taxi-card:nth-child(4) .home-vehicle-image img { --vehicle-scale: .86; }
.fleet-showcase .taxi-card:nth-child(5) .home-vehicle-image img { --vehicle-scale: .84; }
.fleet-showcase .taxi-card:nth-child(6) .home-vehicle-image img { --vehicle-scale: .84; }
.fleet-showcase .home-vehicle-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 19px 20px 21px;
}
.fleet-showcase .taxi-card h3 {
  color: #352217;
  font-size: 1.42rem;
  line-height: 1.14;
}
.fleet-showcase .taxi-card p {
  margin: 9px 0 0;
  color: #6e6256;
  font-size: .88rem;
  line-height: 1.56;
}
.fleet-showcase .home-taxi-cta {
  display: flex;
  justify-content: center;
  margin: 32px 0 0;
}
.fleet-showcase .home-taxi-cta .btn {
  min-height: 44px;
  padding: 11px 20px;
  border-color: rgba(151, 91, 33, .34);
  background: #fffdf9;
  color: #81471d;
}
.fleet-showcase .home-taxi-cta .btn:hover,
.fleet-showcase .home-taxi-cta .btn:focus-visible {
  border-color: #b96c2d;
  background: #fff2df;
  outline: none;
}
@media (max-width: 900px) {
  .fleet-showcase { padding: 76px 0 82px; }
  .fleet-showcase .taxi-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
}
@media (max-width: 540px) {
  .fleet-showcase { padding: 63px 0 70px; }
  .fleet-showcase .section-head { margin-bottom: 27px; }
  .fleet-showcase .section-head h2 { font-size: clamp(2.1rem, 10vw, 2.95rem); }
  .fleet-showcase .taxi-grid { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 16px; }
  .fleet-showcase .taxi-card { min-height: 0; border-radius: 16px; }
  .fleet-showcase .home-vehicle-image { height: 206px; flex-basis: 206px; }
  .fleet-showcase .home-taxi-cta { margin-top: 26px; }
}
