.booking {
  display: grid;
  grid-template-columns: 0.48fr 1.2fr 0.55fr;
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  padding: clamp(70px, 9vw, 130px) clamp(24px, 7vw, 105px);
  background: #0b1726;
  color: #fff;
}

.booking-label {
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 18px;
}

.booking-label span {
  max-width: 150px;
  color: #aeb8c3;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-transform: uppercase;
}

.booking h2 {
  max-width: 780px;
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 6.6rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.booking-copy > p:last-child {
  max-width: 680px;
  margin: 0;
  color: #c6ced6;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.booking-button {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: #f15a24;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease;
}

.booking-button span:last-child {
  align-self: flex-end;
  font-size: 2rem;
  font-weight: 400;
}

.booking-button:hover {
  background: #d94814;
  transform: translateY(-4px);
}

@media (max-width: 900px) {
  .booking {
    grid-template-columns: 1fr;
  }

  .booking-label {
    min-height: 60px;
  }

  .booking-button {
    min-height: 110px;
  }
}
