:root {
  --ink: #12201d;
  --green: #285e51;
  --lime: #c9ed73;
  --muted: #65716e;
  --line: #d9dfda;
  --page: #f7f8f5;
  --white: #fff;
  --accent: #006bff;
  --accent-soft: #e8f1ff;
  --soft-line: #e8eaee;
}
* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--page); font: 16px/1.55 "Inter", sans-serif; }
button, input, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Manrope", sans-serif; line-height: 1.12; }
.booking-shell { width: min(1160px, calc(100% - 32px)); min-height: 100vh; display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; align-items: start; margin: 0 auto; padding: 48px 0; }
.booking-intro { position: sticky; top: 32px; display: grid; gap: 18px; padding: 6px 0; }
.booking-brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; font-family: "Manrope", sans-serif; font-weight: 700; }
.booking-brand span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 8px; color: #fff; background: var(--green); font-size: 13px; }
.overline { margin-bottom: 2px; color: var(--green); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.booking-intro h1 { max-width: 520px; margin-bottom: 0; font-size: 48px; letter-spacing: 0; }
.booking-intro > p { max-width: 560px; color: var(--muted); }
.booking-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.booking-meta span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--green); background: #fff; font-size: 12px; font-weight: 700; }
.booking-panel { display: grid; gap: 14px; }
.booking-step, .booking-form, .booking-confirmation { padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: 0 14px 38px rgba(17, 41, 36, .06); }
.booking-step-heading { display: flex; align-items: start; gap: 12px; margin-bottom: 18px; }
.booking-step-heading > span { width: 28px; height: 28px; display: grid; flex: 0 0 28px; place-items: center; border-radius: 50%; color: var(--green); background: #e8f0e8; font-weight: 800; }
.booking-step-heading h2 { margin: 0 0 3px; font-size: 22px; }
.booking-step-heading p { margin: 0; color: var(--muted); font-size: 13px; }
.booking-slot-list { display: grid; gap: 14px; }
.booking-calendar-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(260px, .7fr); gap: 18px; align-items: start; }
.booking-calendar-stack { display: grid; gap: 16px; }
.booking-calendar-month { padding: 16px; border: 1px solid var(--line); border-radius: 12px; background: #fbfcfa; }
.booking-calendar-title { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.booking-calendar-title h3 { margin: 0; font-size: 20px; }
.booking-calendar-title span { color: var(--green); font-size: 12px; font-weight: 800; }
.booking-calendar-weekdays, .booking-calendar-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 7px; }
.booking-calendar-weekdays { margin-bottom: 7px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
.booking-date-blank { min-height: 56px; }
.booking-date-button { min-height: 56px; display: grid; place-items: center; gap: 2px; padding: 6px 4px; border: 1px solid transparent; border-radius: 10px; color: #a3ada9; background: transparent; text-align: center; }
.booking-date-button strong { font-size: 15px; line-height: 1; }
.booking-date-button span { font-size: 10px; font-weight: 800; line-height: 1; }
.booking-date-button.available { cursor: pointer; color: var(--ink); border-color: #c7d7ce; background: #fff; box-shadow: 0 6px 16px rgba(17, 41, 36, .05); }
.booking-date-button.available strong { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 999px; background: #eef8ed; color: var(--green); }
.booking-date-button.available span { color: var(--green); }
.booking-date-button.available:hover, .booking-date-button.available.selected { border-color: var(--green); background: #eef6f2; transform: translateY(-1px); }
.booking-date-button.available.selected strong { color: #102a26; background: var(--lime); }
.booking-times-panel { position: sticky; top: 24px; padding: 18px; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: 0 12px 30px rgba(17, 41, 36, .06); }
.booking-times-panel h3 { margin-bottom: 6px; font-size: 18px; }
.booking-times-panel p { color: var(--muted); font-size: 13px; }
.booking-time-grid { display: grid; gap: 8px; margin-top: 14px; }
.booking-time-grid button { min-height: 46px; display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 0 12px; border: 1px solid var(--line); border-radius: 8px; color: var(--ink); background: #fff; font-weight: 800; text-align: left; }
.booking-time-grid button:hover, .booking-time-grid button.selected { border-color: var(--green); background: #eef6f2; }
.booking-time-grid button span { color: var(--muted); font-size: 11px; font-weight: 800; }
.empty-times { min-height: 180px; display: grid; align-content: center; border-style: dashed; background: #fbfcfa; }
.booking-form { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.booking-form .booking-step-heading, .booking-form .full-width, .booking-status, .booking-submit { grid-column: 1 / -1; }
label { display: grid; gap: 6px; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .04em; }
input, textarea { width: 100%; min-height: 43px; padding: 10px 11px; border: 1px solid var(--line); border-radius: 6px; color: var(--ink); background: #fff; outline: 0; }
textarea { resize: vertical; }
input:focus, textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(40,94,81,.12); }
.booking-submit { min-height: 45px; display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 6px; color: #102a26; background: var(--lime); font-weight: 800; }
.booking-submit:disabled { cursor: not-allowed; opacity: .55; }
.booking-status { min-height: 20px; margin: 0; color: #a53d3d; font-size: 13px; }
.booking-loader, .booking-empty { padding: 24px; border: 1px dashed var(--line); border-radius: 8px; color: var(--muted); background: #fbfcfa; }
.booking-empty h3 { margin-bottom: 4px; font-size: 17px; color: var(--ink); }
.booking-confirmation h2 { font-size: 28px; }
.booking-confirmation p { color: var(--muted); }
.trap-field, .hidden { display: none !important; }

/* Calendly-style booking layout */
body { background: #f5f7fb; }
.booking-shell {
  width: min(1240px, calc(100% - 32px));
  min-height: 720px;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  margin: 32px auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--soft-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(16, 24, 40, .08);
}
.booking-intro {
  position: static;
  top: auto;
  align-content: start;
  gap: 14px;
  padding: 28px;
  border-right: 1px solid var(--soft-line);
  background: #fff;
}
.booking-brand { margin-bottom: 14px; color: var(--muted); font-size: 13px; }
.booking-brand span { width: 32px; height: 32px; border-radius: 50%; background: var(--accent); }
.booking-avatar {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--green));
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(0, 107, 255, .2);
}
.booking-host { margin: 0; color: var(--muted); font-size: 13px; font-weight: 800; }
.booking-intro h1 { max-width: 210px; font-size: 28px; letter-spacing: -.02em; }
.booking-intro-copy { color: var(--muted); font-size: 14px; }
.booking-meta { display: grid; gap: 10px; }
.booking-meta span { padding: 0; border: 0; color: #3f4644; background: transparent; font-size: 13px; }
.booking-meta b { display: inline-grid; place-items: center; width: 20px; height: 20px; margin-right: 6px; border-radius: 50%; color: #fff; background: #444; font-size: 11px; }
.booking-panel {
  display: grid;
  grid-template-columns: minmax(500px, 1fr) 310px;
  gap: 0;
  min-width: 0;
}
.booking-step {
  min-width: 0;
  padding: 32px 36px;
  border: 0;
  border-right: 1px solid var(--soft-line);
  border-radius: 0;
  box-shadow: none;
}
.booking-step-heading { margin-bottom: 20px; }
.booking-step-heading h2 { font-size: 21px; letter-spacing: -.01em; }
.booking-step-heading p { font-size: 13px; }
.booking-calendar-layout { grid-template-columns: minmax(280px, 1fr) 178px; gap: 24px; }
.booking-calendar-month { padding: 0; border: 0; border-radius: 0; background: transparent; }
.booking-calendar-title h3 { font-size: 16px; }
.booking-calendar-title span { position: relative; padding-left: 14px; color: var(--muted); font-size: 11px; }
.booking-calendar-title span::before { content: ""; position: absolute; left: 0; top: 50%; width: 7px; height: 7px; border-radius: 50%; background: #31d083; transform: translateY(-50%); }
.booking-calendar-weekdays { color: #4f5754; font-size: 9px; }
.booking-date-button, .booking-date-blank { min-height: 44px; }
.booking-date-button { border-radius: 999px; color: #67706d; }
.booking-date-button span { display: none; }
.booking-date-button.available { border-color: transparent; background: transparent; box-shadow: none; }
.booking-date-button.available strong { width: 34px; height: 34px; color: var(--accent); background: var(--accent-soft); }
.booking-date-button.available:hover { border-color: transparent; background: transparent; transform: none; }
.booking-date-button.available:hover strong { background: #d8e8ff; }
.booking-date-button.available.selected strong { color: #fff; background: var(--accent); }
.booking-times-panel {
  position: static;
  max-height: 520px;
  overflow: auto;
  padding: 0 4px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.booking-times-panel h3 { margin-bottom: 10px; font-size: 13px; }
.booking-duration-picker { display: grid; gap: 8px; margin-bottom: 16px; }
.booking-duration-picker .overline { margin: 0; }
.booking-duration-picker div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.booking-duration-picker button {
  min-height: 34px;
  border: 1px solid #d7e3f7;
  border-radius: 8px;
  color: #41506a;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}
.booking-duration-picker button:hover, .booking-duration-picker button.selected {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}
.booking-time-grid { gap: 6px; margin-top: 0; }
.booking-time-grid button {
  min-height: 38px;
  justify-content: center;
  border-color: #9dc3ff;
  border-radius: 6px;
  color: var(--accent);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}
.booking-time-grid button span { display: none; }
.booking-time-grid button:hover, .booking-time-grid button.selected { border-color: var(--accent); color: #fff; background: var(--accent); }
.empty-times { min-height: 220px; padding: 16px; border: 1px dashed var(--soft-line); border-radius: 10px; background: #fbfcff; }
.booking-side-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 24px;
  background: #fbfcff;
}
.booking-side-card { display: grid; gap: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--soft-line); }
.booking-side-profile { display: flex; align-items: center; gap: 10px; }
.booking-side-profile > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--accent); font-size: 12px; font-weight: 800; }
.booking-side-profile strong { display: block; font-size: 13px; }
.booking-side-profile small { display: block; color: var(--muted); font-size: 12px; }
.booking-side-summary h3 { margin-bottom: 6px; font-size: 19px; }
.booking-side-summary p { margin-bottom: 0; color: var(--muted); font-size: 13px; }
.booking-side-summary ul { display: grid; gap: 8px; margin: 14px 0 0; padding: 0; list-style: none; color: #3f4644; font-size: 13px; }
.booking-side-summary li::before { content: "-"; margin-right: 8px; color: #31d083; font-weight: 900; }
.booking-form, .booking-confirmation {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.booking-form { grid-template-columns: 1fr; gap: 10px; }
.booking-form-heading { display: grid; gap: 4px; margin-bottom: 2px; }
.booking-form-heading h2 { margin: 0; font-size: 18px; }
.booking-form-heading p { margin: 0; color: var(--muted); font-size: 12px; }
.booking-form .booking-step-heading, .booking-form .full-width, .booking-status, .booking-submit, .booking-form-heading { grid-column: 1 / -1; }
.booking-form label { gap: 5px; font-size: 11px; }
.booking-form input, .booking-form textarea { min-height: 40px; border-color: var(--soft-line); border-radius: 8px; font-size: 13px; }
.booking-form textarea { min-height: 78px; }
.booking-submit { border-radius: 8px; color: #fff; background: var(--accent); }
.booking-submit:disabled { background: #aeb8c5; }
@media (max-width: 860px) {
  .booking-shell { grid-template-columns: 1fr; min-height: 0; margin: 18px auto; padding: 0; }
  .booking-intro { position: static; border-right: 0; border-bottom: 1px solid var(--soft-line); }
  .booking-intro h1 { font-size: 30px; }
  .booking-panel { grid-template-columns: 1fr; }
  .booking-step { border-right: 0; border-bottom: 1px solid var(--soft-line); }
  .booking-calendar-layout { grid-template-columns: 1fr; }
  .booking-times-panel { position: static; }
  .booking-side-panel { background: #fff; }
}
@media (max-width: 560px) {
  .booking-shell { width: min(100% - 20px, 1160px); }
  .booking-form { grid-template-columns: 1fr; }
  .booking-step, .booking-side-panel { padding: 18px; }
  .booking-form, .booking-confirmation { padding: 0; }
  .booking-calendar-month { padding: 12px; }
  .booking-calendar-weekdays, .booking-calendar-grid { gap: 4px; }
  .booking-date-button, .booking-date-blank { min-height: 48px; }
  .booking-date-button strong { font-size: 13px; }
  .booking-date-button span { display: none; }
}
