.reservation-section {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: stretch;
}

.reservation-copy,
.booking-form,
.service-visual-card,
.service-visual-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .22);
}

.reservation-copy {
  display: grid;
  align-content: space-between;
  gap: 22px;
  padding: 30px;
  overflow: hidden;
}

.reservation-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4.3rem);
  line-height: .98;
}

.reservation-copy p {
  margin: 0;
  color: var(--muted);
}

.reservation-media {
  margin: 8px -30px -30px;
  min-height: 230px;
  display: grid;
  place-items: center;
  background: #fff;
  overflow: hidden;
}

.reservation-media img {
  width: 100%;
  height: 100%;
  max-height: 300px;
  object-fit: contain;
  padding: 18px;
  filter: saturate(.95) contrast(1.04) brightness(.94);
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

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

.booking-form label {
  display: grid;
  gap: 7px;
}

.booking-form label span {
  color: var(--gold);
  font-size: .73rem;
  font-weight: 950;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--text);
  background: #0b0d13;
  outline: none;
}

.booking-form textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(246, 202, 85, .11);
}

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

.form-actions .btn {
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.service-visual-section {
  padding-bottom: 22px;
}

.service-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.service-visual-grid article {
  overflow: hidden;
}

.service-visual-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  padding: 14px;
  background: #fff;
}

.service-visual-grid div {
  padding: 20px;
}

.service-visual-grid span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 8px;
  border: 1px solid rgba(246, 202, 85, .36);
  border-radius: 6px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.service-visual-grid h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  line-height: 1.08;
}

.service-visual-grid p {
  margin: 0;
  color: var(--muted);
}

.car-media .brand-badge,
.vehicle-hero figure .brand-badge {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 12px;
  bottom: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100% - 170px);
  min-height: 38px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 7px;
  color: #fff;
  background: rgba(8, 9, 13, .76);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .34);
  backdrop-filter: blur(12px);
}

.car-media .brand-badge img,
.vehicle-hero figure .brand-badge img {
  width: 24px;
  height: 24px;
  padding: 0;
  object-fit: contain;
  filter: none;
}

.brand-badge em {
  overflow: hidden;
  font-style: normal;
  font-size: .73rem;
  font-weight: 950;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.car-media .price-badge,
.vehicle-hero figure .price-badge {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  bottom: auto;
  left: auto;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid rgba(246, 202, 85, .42);
  border-radius: 7px;
  color: #101219;
  background: var(--gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .3);
  font-size: .78rem;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.car-media .photo-label {
  top: auto;
  right: auto;
  left: 12px;
  bottom: 12px;
}

.card-price,
.vehicle-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 16px 0 0;
  padding: 12px 0 0;
  border-top: 1px solid var(--line);
}

.card-price span,
.vehicle-price span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.card-price strong,
.vehicle-price strong {
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 950;
  white-space: nowrap;
}

.vehicle-hero figure {
  position: relative;
}

.car-media,
.vehicle-hero figure {
  background: #fff;
}

.car-media img,
.vehicle-hero img,
.reservation-media img,
.service-visual-grid img {
  filter: saturate(.98) contrast(1.02);
}

.car-media::before {
  display: none;
}

.vehicle-hero figcaption {
  background: #101219;
}

.vehicle-price {
  max-width: 420px;
  margin-top: 20px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 19px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: #fff;
  background: #16a34a;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .42), 0 0 0 7px rgba(22, 163, 74, .13);
  font-weight: 950;
  line-height: 1;
}

.floating-whatsapp:hover {
  background: #1db954;
  transform: translateY(-1px);
}

.floating-whatsapp svg {
  width: 23px;
  height: 23px;
  stroke-width: 2.2;
}

@media (max-width: 900px) {
  .reservation-section,
  .service-visual-grid {
    grid-template-columns: 1fr;
  }

  .reservation-media {
    min-height: 190px;
  }
}

@media (max-width: 820px) {
  .site-header {
    display: flex;
    align-items: center;
    z-index: 100;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    min-height: 68px;
    gap: 6px;
    padding: 8px 16px;
  }

  .site-header::before {
    inset: 0;
    margin-inline: 0;
  }

  .brand-link,
  .brand-link img {
    width: 154px;
    height: 50px;
  }

  .brand-link {
    flex: 0 0 auto;
    margin-right: auto;
  }

  .header-call {
    order: 2;
    flex: 0 0 44px;
    width: 44px;
    min-height: 44px;
    padding: 0;
    border-radius: 8px;
  }

  .header-call span {
    display: none;
  }

  .menu-toggle {
    order: 3;
    position: relative;
    display: inline-flex;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
  }

  .menu-toggle span {
    left: 50%;
    top: 50%;
    margin-left: -9px;
    margin-top: -1px;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 120;
    display: flex;
    width: min(86vw, 350px);
    min-height: 100dvh;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    padding: 104px 18px 22px;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, .14);
    border-radius: 0;
    background:
      radial-gradient(circle at 18% 18%, rgba(239, 52, 52, .28), transparent 34%),
      linear-gradient(160deg, rgba(21, 24, 33, .98), rgba(8, 9, 13, .99));
    box-shadow: -28px 0 70px rgba(0, 0, 0, .52);
    transform: translateX(108%);
    transition: transform .24s ease;
    pointer-events: none;
  }

  .site-nav::before {
    content: "Menu";
    margin: 0 0 8px;
    color: var(--gold);
    font-size: .78rem;
    font-weight: 950;
    text-transform: uppercase;
  }

  .site-nav::after {
    content: "06 19 37 34 07";
    margin-top: auto;
    padding: 16px;
    border: 1px solid rgba(246, 202, 85, .28);
    border-radius: 8px;
    color: var(--gold);
    background: rgba(255, 255, 255, .06);
    font-weight: 950;
    text-align: center;
  }

  .site-nav.is-open {
    transform: translateX(0);
    pointer-events: auto;
  }

  body.menu-open .header-call {
    opacity: 0;
    pointer-events: none;
  }

  body.menu-open .menu-toggle {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 130;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
  }

  .site-nav a {
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .04);
    color: var(--text);
    font-size: 1rem;
    font-weight: 950;
  }

  .site-nav a:hover,
  .site-nav a[aria-current=page] {
    border-color: rgba(239, 52, 52, .38);
    background: rgba(239, 52, 52, .18);
  }

  .menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 85;
    display: block;
    background: rgba(0, 0, 0, .56);
    opacity: 0;
    transition: opacity .2s ease;
    pointer-events: none;
    backdrop-filter: blur(5px);
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .menu-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 78px;
  }

  .site-header {
    min-height: 64px;
    padding-inline: 12px;
  }

  .reservation-section {
    width: 100%;
    padding-top: 58px;
  }

  .reservation-copy,
  .booking-form {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .form-grid,
  .form-actions {
    grid-template-columns: 1fr;
    display: grid;
  }

  .car-media .brand-badge,
  .vehicle-hero figure .brand-badge {
    max-width: calc(100% - 154px);
  }

  .brand-badge em {
    max-width: 92px;
  }

  .car-media .price-badge,
  .vehicle-hero figure .price-badge {
    font-size: .69rem;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 58px;
    height: 58px;
    min-height: 58px;
    padding: 0;
  }

  .floating-whatsapp span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}
