.schedule-hero {
  padding: 4rem 0 2rem;
  max-width: 720px;
}
.schedule-hero h1 {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin: 0.25rem 0 1rem;
  line-height: 1.1;
}
.schedule-lede { color: var(--text-soft); font-size: 1.06rem; max-width: 60ch; }

.schedule-app { padding: 1rem 0 5rem; }
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 820px) {
  .schedule-grid { grid-template-columns: 1fr; }
}

.schedule-loading { padding: 3rem 1rem; text-align: center; color: var(--text-muted); }

.cal-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
}
.cal-title { font-weight: 700; font-size: 1.1rem; }
.cal-nav { display: inline-flex; gap: .5rem; }
.cal-nav button {
  background: var(--blue-soft); color: var(--blue); padding: .5rem .8rem;
  border-radius: 8px; box-shadow: none;
}
.cal-nav button:disabled { opacity: .4; cursor: not-allowed; }

.cal-weekdays, .cal-days {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: .35rem;
}
.cal-weekdays {
  font-size: .72rem; color: var(--text-muted); letter-spacing: .08em;
  text-transform: uppercase; text-align: center; margin-bottom: .5rem;
}
.cal-day {
  aspect-ratio: 1; border: 1px solid var(--line); border-radius: 10px;
  background: transparent; display: grid; place-items: center;
  font-weight: 600; cursor: pointer; transition: all var(--transition);
  box-shadow: none; color: var(--text);
}
.cal-day:disabled { color: var(--text-muted); opacity: .35; cursor: not-allowed; }
.cal-day.has-slots { background: var(--blue-soft); border-color: rgba(42, 74, 63,.22); color: var(--blue); }
.cal-day.selected { background: var(--blue); color: #fff; border-color: var(--blue); }
.cal-day.today { outline: 2px solid var(--accent); outline-offset: 2px; }

.schedule-slots { border-left: 1px solid var(--line); padding-left: 1.5rem; }
@media (max-width: 820px) { .schedule-slots { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 1.5rem; } }
.slots-header { font-weight: 700; margin-bottom: .5rem; }
.slots-tz { font-size: .78rem; color: var(--text-muted); margin-bottom: 1rem; }
.slot-list { display: grid; gap: .5rem; grid-template-columns: 1fr 1fr; }
.slot-btn {
  position: relative;
  background: #fff; color: var(--text); border: 1px solid var(--line);
  padding: .65rem; border-radius: 8px; font-weight: 600;
  box-shadow: 0 2px 0 0 var(--line); cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
}
.slot-btn:hover { border-color: var(--blue); color: var(--blue); }
.slot-btn:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
.slot-btn.selected {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-soft), 0 4px 12px rgba(42, 74, 63, .28);
  transform: translateY(-1px);
  padding-right: 1.75rem;
}
.slot-btn.selected::after {
  content: "";
  position: absolute;
  top: 50%; right: .7rem;
  width: .45rem; height: .8rem;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: translateY(-60%) rotate(45deg);
}

.booking-form {
  margin-top: 2rem; display: grid; gap: 1rem; max-width: 560px;
  background: var(--surface); padding: 1.75rem; border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.booking-form h2 { font-family: "Newsreader", Georgia, serif; font-weight: 400; font-style: italic; margin: 0; }
.booking-form label { display: grid; gap: .35rem; font-size: .88rem; font-weight: 600; }
.booking-form label em { color: var(--accent); font-style: normal; }
.booking-form input, .booking-form textarea {
  padding: .75rem; border: 1px solid var(--line); border-radius: 8px; background: #fff;
  font-family: inherit;
}
.booking-form input:focus, .booking-form textarea:focus { outline: 2px solid var(--blue); outline-offset: 1px; }
.field-error { color: #b9352b; min-height: 1em; font-weight: 500; }
.booking-actions { display: flex; gap: .75rem; justify-content: flex-end; margin-top: .5rem; }
.booking-status { min-height: 1.5em; color: var(--text-muted); font-size: .9rem; }
.booking-status[data-state="error"] { color: #b9352b; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.booking-success {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2.5rem; text-align: center; margin-top: 2rem;
}
.booking-success h2 { font-family: "Newsreader", Georgia, serif; font-weight: 400; font-style: italic; margin-bottom: .75rem; }
