.booking-page .page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.booking-header {
  position: relative;
  top: auto;
}

.booking-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.booking-page-main {
  flex: 1;
}

.booking-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.14fr);
  align-items: start;
  gap: clamp(36px, 6vw, 76px);
  padding: clamp(54px, 8vw, 94px) 0 72px;
}

.booking-page-copy {
  padding-top: 22px;
}

.booking-page-copy h1 {
  max-width: 12ch;
}

.booking-page-copy .lead {
  max-width: 48ch;
}

.booking-expectations {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: booking-step;
}

.booking-expectations li {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 42px;
  padding-left: 58px;
  counter-increment: booking-step;
}

.booking-expectations li::before {
  content: "0" counter(booking-step);
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--indigo-main);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
}

.booking-expectations strong {
  color: var(--indigo-deep);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
}

.booking-expectations span {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.booking-phone-option {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 0.9rem;
}

.booking-phone-option a {
  color: var(--indigo-main);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.booking-page-scheduler {
  position: relative;
}

.booking-page-scheduler::before {
  content: "";
  position: absolute;
  inset: 7% 5% auto;
  height: 74%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 110, 234, 0.2), rgba(110, 231, 245, 0.08) 48%, transparent 72%);
  filter: blur(24px);
  pointer-events: none;
}

.booking-page-panel {
  width: 100%;
  max-width: 600px;
  padding: clamp(20px, 3vw, 30px);
  margin-left: auto;
}

.booking-page-panel .visual-meta {
  align-items: center;
}

.booking-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #176b4a;
  white-space: nowrap;
}

.booking-live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #24a36f;
  box-shadow: 0 0 0 4px rgba(36, 163, 111, 0.12);
}

.booking-page-footer {
  align-items: flex-end;
  padding-top: 24px;
}

.booking-page-footer .footer-meta {
  max-width: 620px;
}

.booking-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

.booking-bottom-links a {
  color: var(--indigo-main);
  font-weight: 700;
}

@media (max-width: 940px) {
  .booking-page-hero {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 48px;
  }

  .booking-page-copy {
    padding-top: 0;
  }

  .booking-page-copy h1,
  .booking-page-copy .lead {
    max-width: 640px;
  }

  .booking-page-panel {
    max-width: 680px;
    margin-right: auto;
  }
}

@media (max-width: 620px) {
  .booking-header .brand-text {
    display: none;
  }

  .booking-header-actions {
    gap: 8px;
  }

  .booking-header .button-small {
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.82rem;
  }

  .booking-page-hero {
    padding: 38px 0 54px;
  }

  .booking-page-panel {
    padding: 18px;
  }

  .booking-page-panel .visual-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-page-footer {
    align-items: flex-start;
  }

  .booking-bottom-links {
    justify-content: flex-start;
  }
}
