.booking-float {
  background: var(--ochre);
}

.booking-float:hover {
  background: var(--ochre-dark);
}

.booking-choice {
  width: min(760px, calc(100% - 2rem));
  max-height: calc(100dvh - 2rem);
  margin: auto;
  padding: clamp(1.5rem, 4vw, 3rem);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 32px 90px rgba(73, 55, 45, .24);
}

.booking-choice::backdrop {
  background: rgba(73, 55, 45, .48);
  backdrop-filter: blur(5px);
}

.booking-choice[open] {
  animation: booking-choice-enter .34s cubic-bezier(.16, 1, .3, 1);
}

.booking-choice-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--ink);
  font: 400 1.5rem/1 var(--sans);
  cursor: pointer;
}

.booking-choice h2 {
  max-width: 610px;
  padding-right: 2.5rem;
  font-size: clamp(2.25rem, 5vw, 4rem);
}

.booking-choice-intro {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.booking-choice-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.booking-choice-option {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  color: var(--ink);
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.booking-choice-option:hover,
.booking-choice-option:focus-visible {
  border-color: var(--ochre);
  box-shadow: 0 18px 42px rgba(73, 55, 45, .1);
  transform: translateY(-3px);
}

.booking-choice-online {
  background: rgba(113, 194, 227, .09);
}

.booking-choice-presential {
  background: rgba(249, 183, 125, .12);
}

.booking-choice-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 1.4rem;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 1.15rem;
}

.booking-choice-presential .booking-choice-icon {
  background: var(--peach);
}

.booking-choice-option strong {
  font: 500 1.55rem/1.2 var(--serif);
}

.booking-choice-option small {
  margin-top: .7rem;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.6;
}

.booking-choice-option b {
  margin-top: auto;
  padding-top: 1.5rem;
  color: var(--ochre-dark);
  font-size: .82rem;
}

.booking-gateway {
  max-width: 1040px;
  margin: 0 auto;
}

.booking-gateway .page-head {
  margin-bottom: 3rem;
}

.booking-gateway-options,
.online-professional-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.online-directory {
  max-width: 1040px;
  margin: 0 auto;
}

.online-directory .page-head {
  margin-bottom: 3rem;
}

.online-professional-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}

.online-professional-card h2 {
  margin: 0;
  font-size: 1.8rem;
}

.online-professional-card p {
  margin: .65rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.online-professional-card .button {
  margin-top: 1.5rem;
}

.online-directory-status {
  grid-column: 1 / -1;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  color: var(--muted);
  line-height: 1.65;
}

@keyframes booking-choice-enter {
  from { opacity: 0; transform: translate3d(0, 18px, 0) scale(.98); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 680px) {
  .booking-choice { padding: 1.35rem; }
  .booking-choice h2 { font-size: clamp(2rem, 11vw, 2.7rem); }
  .booking-choice-intro { margin-top: .7rem; }
  .booking-choice-options,
  .booking-gateway-options,
  .online-professional-list {
    grid-template-columns: 1fr;
  }

  .booking-choice-options { gap: .7rem; margin-top: 1.2rem; }
  .booking-choice-option { min-height: 180px; padding: 1.15rem; }
  .booking-choice-icon { width: 38px; height: 38px; margin-bottom: .9rem; }
  .booking-choice-option strong { font-size: 1.35rem; }
  .booking-choice-option small { margin-top: .45rem; line-height: 1.45; }
  .booking-choice-option b { padding-top: 1rem; }

  .booking-float {
    right: .75rem;
    bottom: .75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .booking-choice[open] { animation: none; }
}
