:root {
  --booking-ink: #171713;
  --booking-muted: #6f7068;
  --booking-paper: #f6f5f1;
  --booking-surface: #ffffff;
  --booking-rule: #deded6;
  --booking-gold: #fccb0c;
  --booking-gold-deep: #9a7400;
  --booking-danger: #a53131;
}

@font-face {
  font-family: "Fazaa UI";
  src: url("../fonts/KOSans-Regular.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

.booking-shell,
.booking-shell * { box-sizing: border-box; }
.booking-shell {
  min-width: 320px;
  min-height: 100dvh;
  margin: 0;
  background: #f5f5f2;
  color: var(--booking-ink);
  font-family: "Fazaa UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}
.booking-shell button,
.booking-shell input,
.booking-shell select,
.booking-shell textarea { font: inherit; }
.booking-shell-bar {
  display: flex;
  min-height: 68px;
  padding: 10px 24px;
  border-bottom: 1px solid #e3e3dc;
  align-items: center;
  background: rgba(250, 250, 247, .94);
}
.booking-shell-brand {
  display: inline-grid;
  grid-template-columns: 38px auto;
  gap: 11px;
  align-items: center;
  color: var(--booking-ink);
  text-decoration: none;
}
.booking-shell-logo {
  display: grid;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  place-items: center;
  background: var(--booking-gold);
  color: var(--booking-ink);
  font-size: 1.1rem;
  font-weight: 800;
}
.booking-shell-brand strong,
.booking-shell-brand small { display: block; color: inherit; }
.booking-shell-brand strong { font-size: .84rem; font-weight: 750; }
.booking-shell-brand small { margin-top: 1px; color: #71726b; font-size: .66rem; }
.booking-shell-main { min-height: calc(100dvh - 68px); }

.booking-page {
  min-height: 82vh;
  padding: 148px 20px 120px;
  color: var(--booking-ink);
  color-scheme: light;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(23, 23, 19, .04) 50%, transparent calc(50% + 1px)),
    var(--booking-paper);
}

.booking-page h1,
.booking-page h2,
.booking-page h3,
.booking-page h4,
.booking-page strong,
.booking-page label,
.booking-page dt,
.booking-page dd {
  color: var(--booking-ink);
}

.booking-wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.booking-wrap--narrow { width: min(760px, 100%); text-align: center; }
.booking-wrap--medium { width: min(920px, 100%); }
.booking-kicker {
  margin: 0 0 14px;
  color: var(--booking-gold-deep);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.booking-page h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.045em;
}

.booking-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--booking-muted);
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.7;
}

.booking-back,
.booking-text-link {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--booking-ink);
  font-size: .92rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--booking-gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.booking-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 72px;
  align-items: end;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--booking-rule);
}

.booking-facts {
  margin: 0;
  border-top: 1px solid var(--booking-ink);
}

.booking-facts div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--booking-rule);
}

.booking-facts dt {
  color: var(--booking-muted);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.booking-facts dd { margin: 0; font-size: .92rem; line-height: 1.45; }

.booking-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 64px;
  margin-top: 56px;
}

.booking-progress {
  position: sticky;
  top: 120px;
  align-self: start;
}

.booking-progress-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
  align-items: start;
  color: var(--booking-muted);
}

.booking-progress-item > span {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid var(--booking-rule);
  border-radius: 50%;
  place-items: center;
  font-size: .78rem;
}

.booking-progress-item.is-current { color: var(--booking-ink); }
.booking-progress-item.is-current > span { border-color: var(--booking-gold); background: var(--booking-gold); }
.booking-progress-item strong,
.booking-progress-item small { display: block; }
.booking-progress-item strong { font-size: .9rem; }
.booking-progress-item small { margin-top: 4px; font-size: .76rem; line-height: 1.35; }
.booking-progress-line { width: 1px; height: 44px; margin: 7px 0 7px 16px; background: var(--booking-rule); }

.booking-workspace { min-width: 0; }
.booking-section {
  padding: 36px;
  border: 1px solid var(--booking-rule);
  background: var(--booking-surface);
}

.booking-section + .booking-section { margin-top: 28px; }
.booking-section-heading {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  margin-bottom: 32px;
}

.booking-step-label {
  padding-top: 7px;
  color: var(--booking-gold-deep);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.booking-section-heading h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -.025em;
}

.booking-section-heading p { margin: 7px 0 0; color: var(--booking-muted); line-height: 1.5; }
.booking-day + .booking-day { margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--booking-rule); }
.booking-day h3 {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin: 0 0 16px;
  font-size: 1rem;
  font-weight: 600;
}
.booking-day h3 span {
  min-width: 38px;
  color: var(--booking-gold-deep);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.booking-slot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.booking-slot { position: relative; cursor: pointer; }
.booking-slot input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.booking-slot > span { display: block; }
.booking-slot-time {
  padding: 16px 16px 4px;
  border: 1px solid var(--booking-rule);
  border-bottom: 0;
  background: var(--booking-surface);
  font-size: 1.18rem;
  font-weight: 700;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.booking-slot-person {
  min-height: 42px;
  padding: 0 16px 14px;
  border: 1px solid var(--booking-rule);
  border-top: 0;
  color: var(--booking-muted);
  font-size: .75rem;
  line-height: 1.35;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.booking-slot:hover .booking-slot-time,
.booking-slot:hover .booking-slot-person { border-color: #aaa99f; }
.booking-slot input:checked ~ span { border-color: var(--booking-ink); background: var(--booking-gold); color: var(--booking-ink); }
.booking-slot input:focus-visible ~ span { outline: 3px solid rgba(154, 116, 0, .35); outline-offset: 2px; }

.booking-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.booking-field--full { grid-column: 1 / -1; }
.booking-field label {
  display: block;
  margin-bottom: 8px;
  font-size: .82rem;
  font-weight: 700;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  border: 1px solid var(--booking-rule);
  border-radius: 0;
  background: #fbfbf8;
  color: var(--booking-ink);
  font: inherit;
  font-size: 1rem;
  outline: none;
}

.booking-field input,
.booking-field select { height: 52px; padding: 0 14px; }
.booking-field textarea { min-height: 140px; padding: 14px; resize: vertical; }
.booking-field select,
.booking-field select option { background: #fbfbf8; color: var(--booking-ink); }
.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus { border-color: var(--booking-gold-deep); box-shadow: 0 0 0 3px rgba(252, 203, 12, .22); }
.booking-field-error { margin: 7px 0 0; color: var(--booking-danger); font-size: .78rem; }
.booking-error { margin: 0 0 24px; padding: 13px 15px; border-left: 3px solid var(--booking-danger); background: #fff2f2; color: #7e2222; font-size: .9rem; }

.booking-consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-top: 24px;
  color: var(--booking-muted);
  cursor: pointer;
  font-size: .84rem;
  line-height: 1.5;
}
.booking-consent input { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--booking-gold-deep); }

.booking-submit-row {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--booking-rule);
}
.booking-submit-row p { margin: 0; color: var(--booking-muted); font-size: .84rem; }
.booking-button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--booking-gold);
  border-radius: 0;
  align-items: center;
  justify-content: center;
  background: var(--booking-gold);
  color: var(--booking-ink);
  font: inherit;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease;
}
.booking-button:hover { transform: translateY(-2px); background: #ffd632; }
.booking-button:focus-visible,
.booking-back:focus-visible,
.booking-text-link:focus-visible,
.booking-type-card:focus-visible { outline: 3px solid rgba(154, 116, 0, .4); outline-offset: 4px; }
.booking-button--secondary { border-color: var(--booking-ink); background: transparent; }
.booking-button--danger { border-color: #e4b8b8; background: transparent; color: var(--booking-danger); }

.booking-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 64px;
  border: 1px solid var(--booking-rule);
  background: var(--booking-rule);
}
.booking-type-card {
  position: relative;
  min-height: 290px;
  padding: 34px;
  background: var(--booking-surface);
  color: var(--booking-ink);
  text-decoration: none;
  transition: background-color 180ms ease;
}
.booking-type-card:hover { background: #fffdf3; }
.booking-type-duration { color: var(--booking-gold-deep); font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.booking-type-card h2 { max-width: 480px; margin: 52px 0 14px; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 500; }
.booking-type-card p { max-width: 530px; margin: 0; color: var(--booking-muted); line-height: 1.6; }
.booking-card-action { position: absolute; right: 34px; bottom: 30px; font-size: .82rem; font-weight: 700; }
[dir="rtl"] .booking-card-action { right: auto; left: 34px; }

.booking-empty { grid-column: 1 / -1; padding: 52px; background: var(--booking-surface); text-align: center; }
.booking-empty h2,
.booking-empty h3 { margin: 0; font-size: 1.7rem; font-weight: 500; }
.booking-empty p { max-width: 550px; margin: 12px auto 24px; color: var(--booking-muted); line-height: 1.6; }
.booking-empty--compact { padding: 42px 24px; border: 1px dashed var(--booking-rule); }

.booking-confirmation .booking-lead { margin-right: auto; margin-left: auto; }
.booking-status-mark {
  display: grid;
  width: 66px;
  height: 66px;
  margin: 0 auto 28px;
  border: 1px solid var(--booking-ink);
  border-radius: 50%;
  place-items: center;
  background: var(--booking-gold);
  font-size: 1.7rem;
}
.booking-status-mark--cancelled { border-color: #d2b1b1; background: #f7e8e8; color: var(--booking-danger); }
.booking-call-sheet {
  margin: 50px 0 32px;
  border-top: 2px solid var(--booking-ink);
  text-align: initial;
}
.booking-call-sheet div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--booking-rule);
}
.booking-call-sheet span { color: var(--booking-muted); font-size: .76rem; letter-spacing: .05em; text-transform: uppercase; }
.booking-call-sheet strong { font-size: .92rem; font-weight: 600; line-height: 1.5; }
.booking-detail-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: center; }
.booking-detail-actions .booking-text-link { margin: 0 0 0 12px; }
[dir="rtl"] .booking-detail-actions .booking-text-link { margin: 0 12px 0 0; }
.booking-reschedule { margin-top: 44px; }

[dir="rtl"] .booking-error { border-right: 3px solid var(--booking-danger); border-left: 0; }

@media (max-width: 900px) {
  .booking-page { padding-top: 124px; }
  .booking-header { grid-template-columns: 1fr; gap: 36px; }
  .booking-layout { grid-template-columns: 1fr; gap: 30px; }
  .booking-progress { position: static; display: flex; align-items: center; }
  .booking-progress-line { width: 36px; height: 1px; margin: 0 10px; }
  .booking-progress-item { grid-template-columns: 34px 1fr; }
  .booking-progress-item small { display: none; }
}

@media (max-width: 620px) {
  .booking-page { padding: 112px 14px 80px; background: var(--booking-paper); }
  .booking-page h1 { font-size: clamp(2.35rem, 13vw, 4rem); }
  .booking-header { padding-bottom: 38px; }
  .booking-section { padding: 24px 18px; }
  .booking-section-heading { grid-template-columns: 34px 1fr; gap: 8px; }
  .booking-slot-grid,
  .booking-field-grid,
  .booking-type-grid { grid-template-columns: 1fr; }
  .booking-slot-person { min-height: auto; }
  .booking-submit-row { align-items: stretch; flex-direction: column; }
  .booking-button { width: 100%; }
  .booking-call-sheet div { grid-template-columns: 1fr; gap: 5px; }
  .booking-type-card { min-height: 260px; padding: 26px; }
  .booking-card-action { right: 26px; bottom: 24px; }
  [dir="rtl"] .booking-card-action { right: auto; left: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .booking-button,
  .booking-slot-time,
  .booking-slot-person,
  .booking-type-card { transition: none; }
}

/* Calendly-style booking flow */
.booking-shell .booking-page { padding-top: 46px; }
.booking-shell .booking-page h1 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  line-height: 1.08;
}
.booking-shell .booking-lead { margin-top: 16px; font-size: 1rem; }
.booking-shell .booking-type-grid { margin-top: 38px; }
.booking-shell .booking-type-card { min-height: 230px; }
.booking-shell .booking-type-card h2 { margin-top: 36px; font-size: clamp(1.25rem, 2.2vw, 1.7rem); }
.booking-shell .booking-confirmation h1 { max-width: 640px; margin-inline: auto; font-size: clamp(1.7rem, 3vw, 2.2rem); }
.booking-shell .booking-confirmation .booking-lead { font-size: .96rem; }
.booking-scheduler-page {
  min-height: 100dvh;
  padding: 122px 20px 72px;
  background:
    radial-gradient(circle at 12% 18%, rgba(252, 203, 12, .09), transparent 27rem),
    #f5f5f2;
}
.booking-shell .booking-scheduler-page { padding: 30px 20px 68px; }

.booking-scheduler-wrap { width: min(1160px, 100%); }
.booking-scheduler-back {
  gap: 8px;
  align-items: center;
  margin: 0 0 18px;
  color: #5f605a;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}
.booking-scheduler-back:hover { color: var(--booking-ink); transform: translateX(-2px); }
[dir="rtl"] .booking-scheduler-back:hover { transform: translateX(2px); }
.booking-scheduler-back > span { color: inherit; }

.booking-scheduler {
  display: grid;
  grid-template-columns: minmax(260px, 31%) minmax(0, 1fr);
  min-height: 650px;
  overflow: hidden;
  border: 1px solid #e2e2dc;
  border-radius: 18px;
  background: var(--booking-surface);
  box-shadow: 0 24px 70px rgba(39, 37, 27, .09);
  color: var(--booking-ink);
}

.booking-event-card {
  padding: 48px 40px;
  border-inline-end: 1px solid #e9e9e3;
  background: #fbfbf8;
}
.booking-brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 40px;
  border-radius: 14px;
  place-items: center;
  background: var(--booking-gold);
  color: #171713;
  font-size: 1.55rem;
  font-weight: 800;
  box-shadow: 0 9px 24px rgba(154, 116, 0, .16);
}
.booking-host {
  margin: 0 0 10px;
  color: #77786f;
  font-size: .88rem;
  font-weight: 600;
}
.booking-scheduler .booking-event-card h1 {
  margin: 0;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-weight: 650;
  line-height: 1.14;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.booking-event-description {
  margin: 17px 0 0;
  color: var(--booking-muted);
  font-size: .92rem;
  line-height: 1.75;
  text-wrap: pretty;
}
.booking-event-facts {
  display: grid;
  gap: 17px;
  margin: 34px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid #e5e5de;
  list-style: none;
}
.booking-event-facts li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: #5f605a;
  font-size: .84rem;
  line-height: 1.45;
}
.booking-event-facts li > span,
.booking-event-facts li > svg { color: #55564f; }
.booking-event-facts svg,
.booking-placeholder-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}
.booking-current-appointment {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid #e5e5de;
}
.booking-current-appointment div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  padding: 9px 0;
}
.booking-current-appointment dt { color: #77786f; font-size: .7rem; }
.booking-current-appointment dd { margin: 0; color: var(--booking-ink); font-size: .77rem; font-weight: 650; line-height: 1.45; }

.booking-calendar-panel { min-width: 0; padding: 46px 46px 42px; }
.booking-calendar-panel--empty { display: grid; place-items: center; }
.booking-calendar-heading {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 34px;
}
.booking-calendar-heading h2,
.booking-dialog-header h2 {
  margin: 10px 0 0;
  font-size: clamp(1.4rem, 2.1vw, 1.8rem);
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: -.035em;
}
.booking-step-chip {
  color: #8a6800;
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .05em;
}
.booking-timezone-mobile { color: var(--booking-muted); font-size: .75rem; white-space: nowrap; }
.booking-picker {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(220px, .8fr);
  gap: 34px;
  align-items: start;
}
.booking-month { min-width: 0; }
.booking-month-toolbar {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  gap: 10px;
  align-items: center;
  margin-bottom: 21px;
}
.booking-month-toolbar h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  text-transform: capitalize;
}
.booking-month-arrow {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 11px;
  place-items: center;
  background: #f4f4ef;
  color: var(--booking-ink);
  font: inherit;
  font-size: 1.55rem;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}
.booking-month-arrow:hover:not(:disabled) { background: #ecece5; transform: translateY(-1px); }
.booking-month-arrow:disabled { opacity: .32; cursor: not-allowed; }
.booking-month-arrow svg { width: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
[dir="rtl"] .booking-month-arrow { transform: scaleX(-1); }
[dir="rtl"] .booking-month-arrow:hover:not(:disabled) { transform: scaleX(-1) translateY(-1px); }
.booking-weekdays,
.booking-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 5px;
}
.booking-weekdays { margin-bottom: 7px; }
.booking-weekdays span {
  padding: 5px 0;
  color: #96978e;
  font-size: .68rem;
  font-weight: 650;
  text-align: center;
}
.booking-calendar-spacer,
.booking-calendar-day { aspect-ratio: 1; }
.booking-calendar-day {
  position: relative;
  display: grid;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #c2c3bc;
  font: inherit;
  font-size: .82rem;
  font-variant-numeric: tabular-nums;
  place-items: center;
  text-align: center;
}
.booking-calendar-day.is-available {
  background: #f4f4ee;
  color: var(--booking-ink);
  font-weight: 750;
  cursor: pointer;
  transition: background-color 170ms ease, color 170ms ease, transform 170ms ease;
}
.booking-calendar-day.is-available::after {
  position: absolute;
  right: 50%;
  bottom: 5px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #b08700;
  content: "";
  transform: translateX(50%);
}
.booking-calendar-day.is-available:hover { background: #fff5c7; transform: translateY(-1px); }
.booking-calendar-day.is-selected,
.booking-calendar-day.is-selected:hover { background: var(--booking-gold); color: #171713; box-shadow: 0 7px 16px rgba(154, 116, 0, .18); }
.booking-calendar-day.is-selected::after { background: #171713; }
.booking-calendar-day:focus-visible,
.booking-month-arrow:focus-visible,
.booking-dialog-close:focus-visible,
.booking-selection-summary button:focus-visible { outline: 3px solid rgba(154, 116, 0, .35); outline-offset: 2px; }
.booking-calendar-key {
  display: flex;
  gap: 7px;
  align-items: center;
  margin: 18px 0 0;
  color: #85867e;
  font-size: .68rem;
}
.booking-calendar-key span { width: 7px; height: 7px; border-radius: 50%; background: var(--booking-gold); }

.booking-times {
  min-height: 390px;
  padding-inline-start: 28px;
  border-inline-start: 1px solid #ecece6;
}
.booking-times-placeholder {
  display: grid;
  min-height: 390px;
  place-content: center;
  color: #8a8b83;
  text-align: center;
}
.booking-times-placeholder[hidden] { display: none; }
.booking-placeholder-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin: 0 auto 16px;
  border-radius: 15px;
  place-items: center;
  background: #f2f2ed;
  color: #77786f;
}
.booking-placeholder-icon > svg { color: inherit; }
.booking-times-placeholder strong { font-size: .86rem; }
.booking-times-placeholder p { margin: 7px 0 0; font-size: .74rem; }
.booking-scheduler .booking-day[hidden] { display: none; }
.booking-scheduler .booking-day + .booking-day { margin-top: 0; padding-top: 0; border-top: 0; }
.booking-times-header { margin-bottom: 17px; text-align: center; }
.booking-times-header span { color: #989990; font-size: .68rem; font-weight: 650; }
.booking-times-header h3 { margin: 5px 0 0; font-size: .95rem; font-weight: 700; }
.booking-scheduler .booking-slot-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
.booking-scheduler .booking-slot {
  display: block;
  overflow: hidden;
  border: 1px solid #deded7;
  border-radius: 11px;
  background: #fff;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.booking-scheduler .booking-slot:hover { border-color: #9c7900; box-shadow: 0 6px 18px rgba(56, 50, 27, .07); transform: translateY(-1px); }
.booking-scheduler .booking-slot input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.booking-slot-content { display: grid; min-height: 50px; padding: 10px 14px; place-items: center; text-align: center; }
.booking-scheduler .booking-slot-time,
.booking-scheduler .booking-slot-person {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.booking-scheduler .booking-slot-time { display: block; font-size: 1rem; font-weight: 750; font-variant-numeric: tabular-nums; text-align: center; }
.booking-scheduler .booking-slot-person { display: block; margin-top: 3px; color: #85867e; font-size: .68rem; }
.booking-scheduler .booking-slot input:checked ~ span { border-color: transparent; background: transparent; color: inherit; }
.booking-scheduler .booking-slot input:checked ~ .booking-slot-content { background: var(--booking-gold); color: #171713; }
.booking-scheduler .booking-slot input:focus-visible ~ .booking-slot-content { outline: 3px solid rgba(154, 116, 0, .35); outline-offset: -3px; }

.booking-modal[hidden] { display: none; }
.booking-modal { position: fixed; inset: 0; z-index: 80; display: grid; padding: 24px; place-items: center; }
.booking-modal-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: rgba(24, 24, 20, .56); backdrop-filter: blur(7px); opacity: 0; transition: opacity 180ms ease; }
.booking-dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: calc(100dvh - 48px);
  overflow: auto;
  padding: 38px 42px 34px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(20, 19, 14, .26);
  opacity: 0;
  transform: translateY(18px) scale(.985);
  transition: opacity 180ms ease, transform 220ms cubic-bezier(.2, .75, .25, 1);
  color: var(--booking-ink);
}
.booking-modal.is-open .booking-modal-backdrop,
.booking-modal.is-open .booking-dialog { opacity: 1; }
.booking-modal.is-open .booking-dialog { transform: translateY(0) scale(1); }
.booking-modal-open { overflow: hidden; }
.booking-dialog-close {
  position: absolute;
  top: 18px;
  inset-inline-end: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 11px;
  place-items: center;
  background: #f1f1ec;
  color: #4c4d47;
  font: inherit;
  font-size: 1.45rem;
  cursor: pointer;
  transition: background-color 160ms ease, transform 160ms ease;
}
.booking-dialog-close:hover { background: #e8e8e1; transform: rotate(4deg); }
.booking-dialog-close > span { color: inherit; }
.booking-dialog-header { padding-inline-end: 48px; }
.booking-dialog-header p { margin: 10px 0 0; color: var(--booking-muted); font-size: .86rem; line-height: 1.6; }
.booking-selection-summary {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  margin: 25px 0 28px;
  padding: 14px 16px;
  border-radius: 13px;
  background: #f7f5e9;
}
.booking-summary-icon { display: grid; width: 34px; height: 34px; border-radius: 10px; place-items: center; background: var(--booking-gold); color: var(--booking-ink); font-weight: 800; text-align: center; }
.booking-selection-summary small,
.booking-selection-summary strong { display: block; }
.booking-selection-summary small { margin-bottom: 3px; color: #818279; font-size: .67rem; }
.booking-selection-summary strong { font-size: .8rem; font-weight: 700; line-height: 1.45; }
.booking-selection-summary button { padding: 5px 0; border: 0; background: transparent; color: #795e00; font: inherit; font-size: .72rem; font-weight: 750; cursor: pointer; text-decoration: underline; text-underline-offset: 4px; }
.booking-dialog .booking-field-grid { gap: 17px; }
.booking-dialog .booking-field label { margin-bottom: 6px; font-size: .76rem; }
.booking-dialog .booking-field input,
.booking-dialog .booking-field select { height: 48px; border-radius: 9px; background: #fbfbf8; }
.booking-dialog .booking-field textarea { min-height: 105px; border-radius: 9px; }
.booking-dialog .booking-consent { margin-top: 18px; }
.booking-dialog .booking-consent > span { color: #4f5049; }
.booking-dialog-actions { display: flex; gap: 18px; align-items: center; margin-top: 25px; padding-top: 22px; border-top: 1px solid #ecece6; }
.booking-dialog-actions .booking-button { min-width: 190px; gap: 18px; border-radius: 10px; box-shadow: 0 8px 20px rgba(154, 116, 0, .15); }
.booking-dialog-actions .booking-button > span { color: var(--booking-ink); }
.booking-dialog-actions p { margin: 0; color: #888980; font-size: .7rem; line-height: 1.4; }
.booking-reschedule-dialog { width: min(520px, 100%); }
.booking-dialog-actions--single { justify-content: flex-start; }
.booking-dialog-actions--single .booking-button { width: 100%; }

@media (max-width: 980px) {
  .booking-scheduler { grid-template-columns: 1fr; }
  .booking-event-card { padding: 34px 36px; border-inline-end: 0; border-bottom: 1px solid #e9e9e3; }
  .booking-brand-mark { float: inline-start; width: 42px; height: 42px; margin: 0 0 0 16px; border-radius: 12px; }
  [dir="ltr"] .booking-brand-mark { margin: 0 16px 0 0; }
  .booking-event-facts { grid-template-columns: repeat(3, minmax(0, 1fr)); clear: both; }
}

@media (max-width: 720px) {
  .booking-scheduler-page { padding: 34px 12px 48px; }
  .booking-shell .booking-scheduler-page { padding: 22px 12px 48px; }
  .booking-scheduler { border-radius: 14px; }
  .booking-event-card,
  .booking-calendar-panel { padding: 28px 22px; }
  .booking-event-facts { grid-template-columns: 1fr; gap: 12px; }
  .booking-picker { grid-template-columns: 1fr; gap: 26px; }
  .booking-times { min-height: 0; padding: 24px 0 0; border-inline-start: 0; border-top: 1px solid #ecece6; }
  .booking-times-placeholder { min-height: 170px; }
  .booking-calendar-heading { align-items: start; }
  .booking-timezone-mobile { padding-top: 4px; }
  .booking-dialog { padding: 32px 22px 26px; border-radius: 15px; }
  .booking-dialog-header { padding-inline-end: 36px; }
  .booking-dialog .booking-field-grid { grid-template-columns: 1fr; }
  .booking-dialog .booking-field--full { grid-column: auto; }
  .booking-dialog-actions { align-items: stretch; flex-direction: column; }
  .booking-dialog-actions .booking-button { width: 100%; }
  .booking-dialog-actions p { text-align: center; }
}

@media (max-width: 420px) {
  .booking-scheduler-page { padding-inline: 0; }
  .booking-scheduler-back { margin-inline: 14px; }
  .booking-scheduler { border-inline: 0; border-radius: 0; }
  .booking-calendar-heading { display: block; }
  .booking-timezone-mobile { display: block; margin-top: 9px; }
  .booking-weekdays,
  .booking-calendar-grid { gap: 3px; }
  .booking-calendar-day { border-radius: 10px; }
  .booking-modal { padding: 0; align-items: end; }
  .booking-dialog { width: 100%; max-height: 92dvh; border-radius: 18px 18px 0 0; }
  .booking-selection-summary { grid-template-columns: 34px minmax(0, 1fr); }
  .booking-selection-summary button { grid-column: 2; justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  .booking-scheduler *,
  .booking-modal * { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
