.booking-page {
  color: var(--hero-navy);
  background: #fff;
}

.booking-page .about-banner {
  min-height: 307px;
}

.booking-content {
  padding: 105px 0 120px;
  background: #fff url("../about-sbcl/background.png") center / cover no-repeat;
}

.booking-content__container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.booking-return {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 54px;
  color: var(--hero-navy);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.booking-return img {
  width: 17px;
  height: 17px;
}

.booking-content__grid {
  display: grid;
  grid-template-columns: minmax(0, 640px) 1fr;
  align-items: center;
  gap: 82px;
}

.booking-content__eyebrow {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 500;
}

.booking-content h2 {
  margin: 0;
  color: var(--hero-navy);
  font: 700 42px/1.1 "Cormorant Garamond", Georgia, serif;
}

.booking-content h2 span {
  color: var(--hero-gold);
}

.booking-content__description {
  max-width: 620px;
  margin: 22px 0 36px;
  font-size: 15px;
  font-weight: 500;
  line-height: 27px;
}

.booking-package {
  margin: 0 0 35px;
  font-size: 15px;
  font-weight: 500;
}

.booking-package strong {
  margin-right: 5px;
}

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

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

.booking-form label {
  position: relative;
  display: flex;
  min-height: 50px;
  align-items: center;
  border-radius: 7px;
  background: #f0f0f0;
}

.booking-form label > span {
  flex: 0 0 auto;
  padding-left: 23px;
  color: var(--hero-navy);
  font-size: 15px;
  font-weight: 500;
}

.booking-form input {
  min-width: 0;
  height: 50px;
  padding: 0 18px 0 7px;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--hero-navy);
  font: 500 15px/1.2 Inter, Arial, sans-serif;
}

.booking-form label:focus-within {
  box-shadow: 0 0 0 2px rgba(249, 165, 26, .45);
}

.booking-form button {
  width: 130px;
  height: 36px;
  margin-top: 30px;
  border: 0;
  border-radius: 7px;
  background: var(--hero-gold);
  color: #000;
  font: 500 14px/1 Inter, Arial, sans-serif;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.booking-form button:hover,
.booking-form button:focus-visible {
  background: var(--hero-navy);
  color: #fff;
  transform: translateY(-2px);
}

.booking-content__visual {
  display: grid;
  place-items: center;
}

.booking-content__visual img {
  display: block;
  width: min(100%, 355px);
  height: auto;
}

@media (max-width: 900px) {
  .booking-content {
    padding: 78px 0 92px;
  }

  .booking-content__grid {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 42px;
  }
}

@media (max-width: 720px) {
  .booking-page .about-banner {
    min-height: 260px;
  }

  .booking-content__container {
    width: min(100% - 32px, 560px);
  }

  .booking-return {
    margin-bottom: 42px;
  }

  .booking-content__grid {
    grid-template-columns: 1fr;
  }

  .booking-content h2 {
    font-size: 36px;
  }

  .booking-content__visual {
    grid-row: 1;
    width: min(280px, 80%);
    margin: 0 auto;
  }
}

@media (max-width: 520px) {
  .booking-form__row {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .booking-form button {
    width: min(130px, 100%);
  }
}
