.brand-logo {
  display: block;
  width: auto;
  height: 68px;
  object-fit: contain;
}
.footer-brand .brand-logo {
  height: 132px;
  filter: drop-shadow(0 8px 24px rgba(0, 174, 233, .2));
}
@media (max-width: 620px) {
  .brand-logo { height: 58px; }
  .footer-brand .brand-logo { height: 112px; }
}

.reschedule-link {
  display: inline-block;
}
.booking-direct h3 {
  margin: 6px 0 18px;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
}
.booking-direct ul {
  margin: 0 0 26px;
  padding-left: 22px;
  color: var(--muted);
}
.booking-direct li {
  margin: 9px 0;
}
.booking-direct .button {
  margin-top: 12px;
}
.booking-direct .booking-help {
  width: 100%;
  color: var(--ink);
  border-color: #afbec7;
}
.booking-direct .booking-help:hover {
  color: var(--ink);
  border-color: var(--cyan);
  background: #eefaff;
}
.booking-gallery {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.booking-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid #315064;
  border-radius: 14px;
  background: #0d3044;
}
.booking-gallery img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.booking-gallery figcaption {
  display: flex;
  flex-direction: column;
  padding: 16px 18px 18px;
}
.booking-gallery b {
  color: #fff;
  font-family: var(--display);
  font-size: 1.35rem;
  text-transform: uppercase;
}
.booking-gallery span {
  color: #b9c9d2;
  font-size: .85rem;
}
@media (max-width: 760px) {
  .booking-gallery {
    grid-template-columns: 1fr;
  }
  .booking-gallery img {
    height: 220px;
  }
}
