:root {
  --booking-blue: #124fdb;
  --booking-navy: #0a1842;
  --booking-cream: #f5f1e8;
  --booking-white: #fffefb;
  --booking-line: #d8d4cc;
  --booking-muted: #6d6a64;
}

.booking-page { min-height: 100svh; background: var(--booking-cream); }
.booking-page::before { content: ""; position: fixed; inset: 0; pointer-events: none; opacity: .42; background: linear-gradient(rgba(18,79,219,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(18,79,219,.055) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to bottom, black, transparent 78%); }
.booking-topbar { position: relative; z-index: 2; min-height: 76px; padding: 0 max(24px, calc((100vw - 1240px) / 2)); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(17,16,14,.15); background: rgba(245,241,232,.9); backdrop-filter: blur(14px); }
.booking-back { padding-bottom: 3px; color: var(--booking-blue); border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 750; }
.booking-main { position: relative; z-index: 1; width: min(calc(100% - 40px), 1120px); margin: 0 auto; padding: clamp(62px, 9vw, 110px) 0 52px; }
.booking-intro { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.booking-intro .booking-kicker { margin-bottom: 22px; }
.booking-kicker { color: var(--booking-blue); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.booking-intro h1 { max-width: none; font-size: clamp(54px, 7.4vw, 86px); line-height: .92; }
.booking-intro > p:last-child { max-width: 650px; margin: 28px auto 0; color: #55514b; font: 400 clamp(18px, 2vw, 22px)/1.42 var(--serif); }

.scheduler { overflow: hidden; border: 1px solid var(--booking-line); border-radius: 10px; background: var(--booking-white); box-shadow: 0 26px 70px rgba(28,24,16,.1); }
.scheduler-progress { min-height: 58px; padding: 0 32px; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--booking-line); }
.progress-item { display: flex; align-items: center; gap: 9px; color: #a09d97; font-size: 13px; }
.progress-item span { width: 21px; height: 21px; display: grid; place-items: center; border: 1px solid #cac7c1; border-radius: 50%; font-size: 11px; }
.progress-item.is-active { color: var(--ink); }
.progress-item.is-active span { color: white; border-color: var(--booking-navy); background: var(--booking-navy); }
.progress-item.is-done span { color: white; border-color: var(--booking-blue); background: var(--booking-blue); }
.progress-line { width: 70px; height: 1px; margin: 0 16px; background: var(--booking-line); }
.scheduler-form { display: grid; grid-template-columns: minmax(360px, .82fr) minmax(560px, 1.18fr); min-height: 630px; }
.scheduler-details, .scheduler-calendar { position: relative; padding: 38px; }
.scheduler-details { border-right: 1px solid var(--booking-line); }
.event-brand { display: inline-block; margin-bottom: 25px; font: 700 19px/1 var(--serif); letter-spacing: -.03em; }
.event-brand span { color: var(--booking-blue); }
.event-heading h2 { margin: 0 0 14px; font: 650 30px/1.02 var(--serif); letter-spacing: -.035em; }
.event-heading p { margin: 0; color: var(--booking-muted); font-size: 14px; line-height: 1.55; }
.event-facts { margin: 27px 0 30px; padding: 18px 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; border-block: 1px solid var(--booking-line); }
.event-facts div { min-width: 0; }
.event-facts dt { margin-bottom: 3px; color: var(--booking-muted); font-size: 10px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.event-facts dd { margin: 0; font-size: 13px; font-weight: 700; }
.detail-fields { display: grid; gap: 14px; }
.booking-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.detail-fields label, .booking-field-pair label { display: grid; gap: 6px; font-size: 12px; font-weight: 750; }
.detail-fields label > span { color: var(--booking-muted); font-size: 10px; font-weight: 550; }
.detail-fields input, .detail-fields textarea, .timezone-field select { width: 100%; border: 1px solid #cbc8c2; border-radius: 7px; outline: 0; background: white; color: var(--ink); }
.detail-fields input { min-height: 44px; padding: 0 13px; }
.detail-fields textarea { min-height: 74px; padding: 11px 13px; resize: vertical; }
.detail-fields input:focus, .detail-fields textarea:focus, .timezone-field select:focus { border-color: var(--booking-blue); box-shadow: 0 0 0 3px rgba(18,79,219,.12); }
.detail-fields input[aria-invalid="true"] { border-color: #b33a2f; }
.booking-field-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.booking-primary, .booking-secondary { min-height: 47px; padding: 12px 18px; display: inline-flex; align-items: center; justify-content: center; gap: 22px; border: 0; border-radius: 6px; cursor: pointer; font-size: 13px; font-weight: 750; }
.booking-primary { color: white; background: linear-gradient(100deg, #05070d, var(--booking-navy)); }
.booking-primary:hover { background: var(--booking-blue); }
.booking-primary:disabled { cursor: not-allowed; opacity: .38; }
.booking-secondary { border: 1px solid var(--booking-line); background: white; }
.booking-privacy { margin: 0; color: var(--booking-muted); font-size: 11px; line-height: 1.45; }
.booking-privacy a, .booking-footnote a { color: var(--booking-blue); text-decoration: underline; text-underline-offset: 2px; }
.field-error, .submit-status { min-height: 18px; margin: 0; color: #a22d24; font-size: 12px; font-weight: 650; }
.details-complete { margin-top: 30px; padding: 20px; border: 1px solid var(--booking-line); border-radius: 7px; background: #faf8f3; }
.details-complete-label { margin-bottom: 5px; color: var(--booking-muted); font-size: 10px; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }
.details-complete > p:not(.details-complete-label) { margin-bottom: 14px; font-size: 14px; font-weight: 700; }
.details-complete button { padding: 0; border: 0; border-bottom: 1px solid currentColor; background: none; color: var(--booking-blue); cursor: pointer; font-size: 12px; font-weight: 750; }

.scheduler-calendar { min-width: 0; }
.calendar-lock { position: absolute; z-index: 4; inset: 0; display: grid; place-items: center; background: rgba(255,254,251,.7); backdrop-filter: blur(2px); }
.calendar-lock p { max-width: 280px; margin: 0; padding: 18px 22px; border: 1px solid var(--booking-line); border-radius: 7px; background: white; box-shadow: 0 10px 25px rgba(17,16,14,.11); text-align: center; font-size: 13px; font-weight: 650; }
.calendar-toolbar { margin-bottom: 24px; display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.calendar-label { margin: 0 0 5px; color: var(--booking-blue); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.calendar-toolbar h2 { margin: 0; font: 600 29px/1 var(--serif); letter-spacing: -.03em; }
.month-actions { display: flex; gap: 7px; }
.month-actions button { min-height: 35px; padding: 0 10px; border: 1px solid var(--booking-line); border-radius: 5px; background: white; cursor: pointer; font-size: 11px; font-weight: 700; }
.month-actions button:disabled { opacity: .28; cursor: not-allowed; }
.calendar-layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 22px; }
.calendar-layout.has-times { grid-template-columns: minmax(300px, 1fr) 190px; }
.weekday-row, .calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.weekday-row { margin-bottom: 7px; }
.weekday-row span { padding: 6px 0; color: #98958e; text-align: center; font-size: 10px; font-weight: 750; text-transform: uppercase; }
.calendar-grid { gap: 6px; }
.calendar-day { aspect-ratio: 1; min-width: 0; display: grid; place-items: center; border: 0; border-radius: 7px; background: transparent; color: var(--ink); cursor: pointer; font-size: 13px; font-weight: 700; }
.calendar-day:hover:not(:disabled), .calendar-day:focus-visible { outline: 0; background: rgba(18,79,219,.1); }
.calendar-day.is-available { border: 1px solid rgba(18,79,219,.16); background: #eef3ff; color: var(--booking-blue); }
.calendar-day.is-selected { border-color: var(--booking-blue); background: var(--booking-blue); color: white; box-shadow: 0 5px 12px rgba(18,79,219,.25); }
.calendar-day:disabled { color: #c2bfb8; cursor: default; }
.calendar-day.is-empty { visibility: hidden; }
.timezone-field { margin-top: 22px; display: grid; gap: 7px; }
.timezone-field label { color: var(--booking-muted); font-size: 10px; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }
.timezone-field select { min-height: 41px; padding: 0 10px; font-size: 12px; }
.time-panel { min-width: 0; padding-left: 20px; border-left: 1px solid var(--booking-line); }
.time-panel-heading h3 { margin: 0 0 17px; font: 650 18px/1.15 var(--serif); }
.time-list { max-height: 367px; overflow: auto; display: grid; gap: 8px; scrollbar-width: thin; }
.time-option { min-height: 42px; padding: 8px; border: 1px solid var(--booking-blue); border-radius: 6px; background: white; color: var(--booking-blue); cursor: pointer; font-size: 12px; font-weight: 750; }
.time-option:hover { background: #eef3ff; }
.time-option.is-selected { background: var(--booking-blue); color: white; }
.book-slot { width: 100%; margin-top: 12px; }
.submit-status { margin-top: 18px; }

.booking-success { min-height: 590px; padding: clamp(48px, 8vw, 88px) 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.booking-success h2 { margin: 0 0 18px; font-size: clamp(43px, 6vw, 68px); }
.booking-success > p:not(.booking-kicker):not(.success-note) { max-width: 600px; margin-bottom: 24px; color: var(--booking-muted); font: 400 19px/1.45 var(--serif); }
.success-summary { min-width: min(100%, 500px); margin: 0 0 25px; padding: 20px 24px; border: 1px solid var(--booking-line); border-radius: 8px; background: #faf8f3; }
.success-summary p { margin: 0; font-size: 14px; font-weight: 700; }
.success-summary p + p { margin-top: 6px; color: var(--booking-muted); font-weight: 500; }
.success-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.success-note { max-width: 500px; margin: 19px 0 0; color: var(--booking-muted); font-size: 11px; }
.booking-footnote { margin: 22px 0 0; color: var(--booking-muted); text-align: center; font-size: 11px; }

[hidden] { display: none !important; }

@media (min-width: 921px) {
  .booking-main { padding-top: 64px; }
  .booking-intro { margin-bottom: 40px; }
  .booking-intro h1 { font-size: clamp(58px, 6.2vw, 76px); }
  .booking-intro > p:last-child { margin-top: 22px; }
}

@media (max-width: 920px) {
  .scheduler-form { grid-template-columns: 1fr; }
  .scheduler-details { border-right: 0; border-bottom: 1px solid var(--booking-line); }
  .scheduler-calendar { min-height: 560px; }
}

@media (max-width: 620px) {
  .booking-topbar { min-height: 64px; padding-inline: 18px; }
  .booking-topbar .wordmark { font-size: 21px; }
  .booking-main { width: min(calc(100% - 24px), 1120px); padding: 56px 0 32px; }
  .booking-intro { margin-bottom: 36px; }
  .booking-intro h1 { font-size: clamp(48px, 14vw, 66px); }
  .booking-intro > p:last-child { margin-top: 22px; font-size: 17px; }
  .scheduler { border-radius: 8px; }
  .scheduler-progress { min-height: 54px; padding: 0 16px; }
  .progress-item { font-size: 11px; }
  .progress-line { width: 32px; margin-inline: 10px; }
  .scheduler-details, .scheduler-calendar { padding: 24px 20px; }
  .event-heading h2 { font-size: 28px; }
  .event-facts { gap: 8px; }
  .event-facts dd { font-size: 11px; }
  .booking-field-pair { grid-template-columns: 1fr; }
  .scheduler-calendar { min-height: 520px; }
  .calendar-toolbar { align-items: center; }
  .calendar-toolbar h2 { font-size: 24px; }
  .month-actions button { min-height: 37px; padding-inline: 8px; font-size: 10px; }
  .calendar-grid { gap: 4px; }
  .calendar-layout.has-times { grid-template-columns: 1fr; }
  .time-panel { padding: 20px 0 0; border: 0; border-top: 1px solid var(--booking-line); }
  .time-list { max-height: none; grid-template-columns: 1fr 1fr; }
  .success-actions { width: 100%; flex-direction: column; }
  .success-actions > * { width: 100%; }
}

@media (prefers-reduced-motion: no-preference) {
  .calendar-day, .booking-primary, .time-option { transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease; }
  .calendar-day:hover:not(:disabled), .time-option:hover { transform: translateY(-1px); }
}
