.booking-hero {
  padding-bottom: clamp(2.8rem, 6vw, 4.8rem);
}

.booking-hero h1 {
  max-width: 10ch;
}

.booking-surface {
  padding: clamp(3rem, 7vw, 6rem) 0;
  background: var(--paper);
  color: var(--ink);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: start;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.scheduler-card {
  overflow: hidden;
  border: 1px solid #a9a79d;
  background: #fffef8;
  box-shadow: 0 24px 55px rgba(16, 18, 16, 0.16);
}

.scheduler-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 1.35rem;
  border-bottom: 1px solid rgba(16, 18, 16, 0.2);
  background: var(--yellow);
}

.scheduler-head strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 1000;
}

.scheduler-head span {
  display: block;
  margin-top: 0.15rem;
  color: rgba(16, 18, 16, 0.7);
  font-size: 0.8rem;
  font-weight: 750;
}

.square-mark {
  display: inline-grid;
  width: 2.3rem;
  height: 2.3rem;
  flex: 0 0 auto;
  border: 0.42rem solid var(--ink);
  border-radius: 0.55rem;
  place-items: center;
}

.square-mark::after {
  width: 0.5rem;
  height: 0.5rem;
  content: "";
  border-radius: 0.12rem;
  background: var(--ink);
}

.scheduler-launch {
  display: grid;
  gap: 0.85rem;
  padding: 1.35rem;
  border-bottom: 1px solid #d1cfc6;
  background: #f3f1ea;
}

.scheduler-launch p {
  margin: 0;
  color: #555750;
  font-size: 0.9rem;
}

.scheduler-launch .button {
  width: 100%;
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.scheduler-frame-wrap,
.scheduler-frame {
  min-height: 760px;
}

.scheduler-frame-wrap {
  position: relative;
  background: #fff;
}

.scheduler-frame {
  display: block;
  width: 100%;
  border: 0;
  background: #fff;
}

.scheduler-fallback {
  margin: 0;
  padding: 1rem 1.35rem;
  border-top: 1px solid #d1cfc6;
  color: #5c5e57;
  font-size: 0.82rem;
}

.scheduler-fallback a {
  color: var(--ink);
  font-weight: 900;
  text-underline-offset: 0.2em;
}

.booking-aside {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 1rem;
}

.booking-note {
  padding: 1.4rem;
  border: 1px solid #a9a79d;
  background: #e6e3d9;
}

.booking-note.dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.booking-note h2 {
  margin: 0 0 0.8rem;
  font-size: 1.55rem;
  font-weight: 1000;
  letter-spacing: -0.04em;
}

.booking-note p,
.booking-note li {
  color: #53554f;
  font-size: 0.9rem;
}

.booking-note.dark p,
.booking-note.dark li {
  color: var(--paper-muted);
}

.booking-note ul {
  margin: 0;
  padding-left: 1.15rem;
}

.booking-note li + li {
  margin-top: 0.55rem;
}

.booking-note .button {
  width: 100%;
  margin-top: 0.75rem;
}

.booking-note.dark .button.secondary {
  color: var(--paper);
}

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

  .booking-aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .scheduler-head {
    align-items: flex-start;
  }

  .scheduler-frame-wrap,
  .scheduler-frame {
    min-height: 690px;
  }

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