.site-header .brand {
  display: block;
  width: 290px;
  height: 92px;
  overflow: hidden;
  background: #06101f;
  line-height: 1;
}

.site-header .brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 46.8%;
}

.site-header {
  height: 106px;
}

.hero {
  min-height: calc(100vh - 106px);
  grid-template-columns: minmax(0, 980px);
  justify-content: start;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  right: 8vw;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: linear-gradient(transparent, rgba(93, 207, 255, .45), transparent);
}

.hero-contact {
  display: grid;
  grid-template-columns: auto auto;
  width: fit-content;
  gap: .15rem 1.25rem;
  margin-top: 2rem;
  padding: 1rem 1.15rem;
  border-left: 2px solid #38bdf8;
  background: rgba(255, 255, 255, .055);
}

.hero-contact span {
  grid-column: 1 / -1;
  color: #83a2bd;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-contact strong {
  color: #eef8ff;
  font-size: .88rem;
}

.hero-contact a {
  color: #70d9ff;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
}

.booking {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 7vw, 7rem);
  background: #fff;
}

.booking h2 {
  margin: .6rem 0 1rem;
  max-width: 800px;
  font-family: Montserrat, sans-serif;
  font-size: clamp(2rem, 3.7vw, 3.8rem);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.booking > div > p:last-child {
  color: #5f7182;
}

.booking-panel {
  padding: 2rem;
  border: 1px solid #b8d3e4;
  border-top: 4px solid #159ed7;
  background: #edf7fd;
}

.booking-panel > span {
  display: block;
  color: #157ba8;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.booking-panel strong {
  display: block;
  margin: .35rem 0 1rem;
  color: #0a2135;
  font-family: Montserrat, sans-serif;
  font-size: 1.65rem;
}

.booking-panel p {
  margin: 0;
  color: #506a7d;
}

.booking-panel a {
  color: #076c9b;
  font-weight: 700;
}

.booking-policy {
  grid-column: 1 / -1;
  margin-top: .5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #d7e2e9;
  color: #637483;
  font-size: .78rem;
  line-height: 1.6;
}

.booking-policy p {
  margin: 0 0 .55rem;
}

.booking-policy p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .site-header {
    height: 82px;
  }

  .site-header .brand {
    width: 215px;
    height: 68px;
  }

  .site-header nav {
    top: 82px;
  }

  .hero {
    min-height: auto;
  }

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

@media (max-width: 420px) {
  .site-header .brand {
    width: 190px;
    height: 60px;
  }

  .hero-contact {
    grid-template-columns: 1fr;
  }

  .hero-contact span {
    grid-column: auto;
  }
}
