:root {
  --schedule-ink: #25231f;
  --schedule-rust: #ad5836;
  --schedule-rust-dark: #854128;
  --schedule-paper: #fbf7ef;
  --schedule-card: #fffdf8;
  --schedule-line: #ded3c6;
  --schedule-muted: #6b655e;
  --schedule-sage: #30433a;
}

.hoc-schedule-page {
  background:
    radial-gradient(circle at 8% 18%, rgba(200, 146, 112, .16), transparent 28rem),
    radial-gradient(circle at 88% 8%, rgba(92, 119, 104, .12), transparent 30rem),
    #f5efe6 !important;
}

.schedule-shell {
  min-height: calc(100vh - 78px);
  color: var(--schedule-ink);
  font-family: "DM Sans", Arial, sans-serif;
}

.schedule-layout {
  display: grid;
  width: min(1340px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(68px, 8vw, 112px) 0 clamp(82px, 9vw, 132px);
  grid-template-columns: minmax(340px, .8fr) minmax(620px, 1.2fr);
  gap: clamp(56px, 8vw, 112px);
  align-items: start;
}

.schedule-intro {
  position: sticky;
  top: 132px;
  max-width: 520px;
}

.schedule-back {
  display: inline-flex;
  margin-bottom: 58px;
  align-items: center;
  gap: 9px;
  color: #766e66;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.schedule-back:hover { color: var(--schedule-rust-dark); }

.schedule-kicker {
  display: block;
  color: var(--schedule-rust);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.schedule-intro h1 {
  margin: 18px 0 0;
  color: var(--schedule-ink);
  font-family: "Newsreader", "Times New Roman", serif;
  font-size: clamp(58px, 5.4vw, 82px) !important;
  font-weight: 300;
  letter-spacing: -.035em;
  line-height: .91;
  text-align: left !important;
  text-wrap: balance;
}

.schedule-intro h1 em {
  color: var(--schedule-rust);
  font-family: inherit;
  font-weight: inherit;
}

.schedule-lede {
  max-width: 48ch;
  margin: 28px 0 0;
  color: var(--schedule-muted);
  font-size: 18px;
  line-height: 1.62;
}

.schedule-details {
  display: grid;
  gap: 0;
  margin-top: 38px;
  border-top: 1px solid rgba(89, 74, 61, .18);
}

.schedule-details > div {
  display: grid;
  min-height: 84px;
  padding: 17px 0;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  align-items: center;
  border-bottom: 1px solid rgba(89, 74, 61, .18);
}

.schedule-details i {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: #eadfd2;
  color: var(--schedule-rust-dark);
  font-size: 14px;
}

.schedule-details span,
.schedule-details strong {
  display: block;
}

.schedule-details strong {
  margin-bottom: 3px;
  color: var(--schedule-ink);
  font-size: 14px;
}

.schedule-details span {
  color: var(--schedule-muted);
  font-size: 13px;
  line-height: 1.45;
}

.schedule-help-note {
  display: grid;
  gap: 6px;
  margin-top: 26px;
  padding: 18px 20px;
  border-left: 3px solid #829387;
  background: rgba(255, 253, 248, .54);
  color: var(--schedule-muted);
  font-size: 13px;
  line-height: 1.5;
}

.schedule-help-note strong { color: var(--schedule-ink); }
.schedule-help-note a { color: var(--schedule-rust-dark); }

.schedule-card-wrap {
  position: relative;
  padding: 7px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 8% 10%, rgba(178, 205, 220, .95), transparent 35%),
    radial-gradient(circle at 92% 26%, rgba(236, 190, 164, .9), transparent 33%),
    linear-gradient(145deg, #7899ad, #9d6d58 46%, #3e6257);
  box-shadow: 0 28px 70px rgba(61, 46, 36, .15);
}

.schedule-card-wrap [hidden] {
  display: none !important;
}

.schedule-card {
  padding: clamp(25px, 3.2vw, 44px);
  border-radius: 24px;
  background: rgba(255, 253, 248, .96);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .58);
}

.schedule-card__header {
  display: flex;
  margin-bottom: 30px;
  padding-bottom: 20px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--schedule-line);
}

.schedule-card__header span {
  color: var(--schedule-rust);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.schedule-card__header strong {
  color: var(--schedule-muted);
  font-size: 13px;
  font-weight: 600;
  text-align: right;
}

.schedule-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
}

.schedule-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.schedule-field--full { grid-column: 1 / -1; }

.schedule-field label {
  color: #36322e;
  font-size: 13px;
  font-weight: 700;
}

.schedule-field label span {
  color: #8b837b;
  font-size: 11px;
  font-weight: 500;
}

.schedule-label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.schedule-label-row small {
  color: #8b837b;
  font-size: 11px;
}

.schedule-field input,
.schedule-field select,
.schedule-field textarea {
  width: 100%;
  border: 1px solid #cfc3b5;
  border-radius: 11px;
  background: #fff;
  color: var(--schedule-ink);
  font: 500 16px/1.35 "DM Sans", Arial, sans-serif;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.schedule-field input,
.schedule-field select {
  min-height: 54px;
  padding: 0 14px;
}

.schedule-field select {
  appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, #6c655e 50%),
    linear-gradient(135deg, #6c655e 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 23px,
    calc(100% - 15px) 23px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.schedule-field textarea {
  min-height: 122px;
  padding: 14px;
  resize: vertical;
}

.schedule-field input:focus,
.schedule-field select:focus,
.schedule-field textarea:focus {
  border-color: var(--schedule-rust);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(173, 88, 54, .12);
}

.schedule-field [aria-invalid="true"] {
  border-color: #a53f32;
  background: #fff9f7;
}

.schedule-field__error,
.schedule-consent-error {
  min-height: 16px;
  color: #933528;
  font-size: 11px;
  line-height: 1.4;
}

.schedule-field__help {
  color: #817971;
  font-size: 11px;
  line-height: 1.45;
}

.schedule-picker {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--schedule-line);
}

.schedule-picker__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.schedule-step {
  display: block;
  margin-bottom: 5px;
  color: var(--schedule-rust);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.schedule-picker h2 {
  margin: 0;
  color: var(--schedule-ink);
  font-family: "Newsreader", "Times New Roman", serif;
  font-size: 36px !important;
  font-weight: 300;
  line-height: 1;
}

.schedule-timezone {
  display: inline-flex;
  padding: 8px 11px;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--schedule-line);
  border-radius: 999px;
  color: var(--schedule-muted);
  font-size: 11px;
  line-height: 1.2;
}

.schedule-loading {
  display: grid;
  margin-top: 20px;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.schedule-loading span {
  display: block;
  height: 76px;
  border-radius: 12px;
  background: linear-gradient(100deg, #eee6dd 20%, #f8f3ec 40%, #eee6dd 60%);
  background-size: 200% 100%;
  animation: schedule-shimmer 1.4s infinite;
}

.schedule-loading small {
  grid-column: 1 / -1;
  color: var(--schedule-muted);
  font-size: 11px;
}

@keyframes schedule-shimmer {
  to { background-position-x: -200%; }
}

.schedule-availability { margin-top: 20px; }

.schedule-date-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.schedule-date {
  display: grid;
  min-height: 72px;
  padding: 10px 5px;
  place-items: center;
  align-content: center;
  gap: 4px;
  border: 1px solid var(--schedule-line);
  border-radius: 12px;
  background: #fff;
  color: var(--schedule-muted);
  cursor: pointer;
  font-family: "DM Sans", Arial, sans-serif;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}

.schedule-date span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.schedule-date strong {
  color: var(--schedule-ink);
  font-size: 15px;
}

.schedule-date:hover,
.schedule-date:focus-visible {
  border-color: var(--schedule-rust);
  outline: 0;
}

.schedule-date[aria-pressed="true"] {
  border-color: var(--schedule-sage);
  background: var(--schedule-sage);
  color: rgba(255, 255, 255, .72);
}

.schedule-date[aria-pressed="true"] strong { color: #fff; }

.schedule-more-dates {
  margin: 10px 0 0;
  padding: 5px 0;
  border: 0;
  background: transparent;
  color: var(--schedule-rust-dark);
  cursor: pointer;
  font: 700 12px/1.4 "DM Sans", Arial, sans-serif;
}

.schedule-time-fieldset {
  min-width: 0;
  margin: 17px 0 0;
  padding: 0;
  border: 0;
}

.schedule-time-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.schedule-time-option { position: relative; }
.schedule-time-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.schedule-time-option span {
  display: flex;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfc3b5;
  border-radius: 10px;
  background: #fff;
  color: #3c3833;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}

.schedule-time-option span:hover { border-color: var(--schedule-rust); }
.schedule-time-option input:focus-visible + span {
  outline: 2px solid var(--schedule-rust);
  outline-offset: 2px;
}

.schedule-time-option input:checked + span {
  border-color: var(--schedule-rust);
  background: var(--schedule-rust);
  color: #fff;
}

.schedule-picker__status {
  min-height: 20px;
  margin: 13px 0 0;
  color: var(--schedule-muted);
  font-size: 12px;
  line-height: 1.45;
}

.schedule-picker__status.is-error { color: #933528; }

.schedule-consent {
  display: grid;
  margin-top: 22px;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  color: var(--schedule-muted);
  cursor: pointer;
  font-size: 12px;
  line-height: 1.5;
}

.schedule-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--schedule-rust);
}

.schedule-consent a { color: var(--schedule-rust-dark); }
.schedule-consent-error { display: block; margin-left: 31px; }

.schedule-submit {
  display: flex;
  width: 100%;
  min-height: 58px;
  margin-top: 18px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--schedule-rust);
  border-radius: 999px;
  background: var(--schedule-rust);
  color: #fff;
  cursor: pointer;
  font: 700 15px/1 "DM Sans", Arial, sans-serif;
  text-decoration: none;
  transition: background .16s ease, border-color .16s ease, transform .16s ease;
}

.schedule-submit:hover {
  border-color: var(--schedule-rust-dark);
  background: var(--schedule-rust-dark);
  transform: translateY(-1px);
}

.schedule-submit:focus-visible {
  outline: 2px solid var(--schedule-rust-dark);
  outline-offset: 3px;
}

.schedule-submit:disabled {
  cursor: wait;
  opacity: .65;
  transform: none;
}

.schedule-submit.is-loading i { animation: schedule-arrow 1s ease-in-out infinite; }
@keyframes schedule-arrow { 50% { transform: translateX(5px); } }

.schedule-form-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: #933528;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.schedule-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.schedule-success {
  min-height: 680px;
  padding: clamp(40px, 6vw, 78px) clamp(28px, 5vw, 62px);
  border-radius: 24px;
  background: rgba(255, 253, 248, .97);
  text-align: center;
}

.schedule-success__icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--schedule-sage);
  color: #fff;
  font-size: 26px;
}

.schedule-success h2 {
  margin: 15px 0 0;
  color: var(--schedule-ink);
  font-family: "Newsreader", "Times New Roman", serif;
  font-size: clamp(48px, 5vw, 68px) !important;
  font-weight: 300;
  letter-spacing: -.03em;
  line-height: .95;
}

.schedule-success > p {
  margin: 23px auto 0;
  color: var(--schedule-muted);
  font-size: 17px;
  line-height: 1.6;
}

.schedule-success__details {
  display: flex;
  margin: 28px auto 0;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
}

.schedule-success__details span {
  display: inline-flex;
  min-height: 38px;
  padding: 0 13px;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--schedule-line);
  border-radius: 999px;
  color: #575149;
  font-size: 12px;
  font-weight: 700;
}

.schedule-success .schedule-success__email {
  max-width: 46ch;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--schedule-line);
  font-size: 13px;
}

.schedule-submit--link { max-width: 340px; margin: 24px auto 0; }
.schedule-success__home {
  display: inline-block;
  margin-top: 28px;
  color: var(--schedule-rust-dark);
  font-size: 13px;
  font-weight: 700;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 1060px) {
  .schedule-layout {
    grid-template-columns: minmax(280px, .7fr) minmax(540px, 1.3fr);
    gap: 48px;
  }
  .schedule-intro h1 { font-size: 58px !important; }
}

@media (max-width: 900px) {
  .schedule-layout {
    width: min(760px, calc(100% - 40px));
    padding-top: 54px;
    grid-template-columns: 1fr;
  }
  .schedule-intro {
    position: static;
    max-width: 680px;
  }
  .schedule-back { margin-bottom: 40px; }
  .schedule-lede { max-width: 60ch; }
  .schedule-details {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    border-top: 0;
  }
  .schedule-details > div {
    min-height: 142px;
    padding: 18px;
    grid-template-columns: 1fr;
    align-content: start;
    border: 1px solid rgba(89, 74, 61, .18);
    border-radius: 14px;
  }
  .schedule-help-note { max-width: 620px; }
}

@media (max-width: 620px) {
  .schedule-layout {
    width: min(100% - 28px, 560px);
    padding: 36px 0 76px;
    gap: 38px;
  }
  .schedule-back { margin-bottom: 34px; }
  .schedule-intro h1 { font-size: clamp(50px, 15vw, 64px) !important; }
  .schedule-lede { font-size: 16px; }
  .schedule-details { grid-template-columns: 1fr; }
  .schedule-details > div {
    min-height: 0;
    padding: 15px 0;
    grid-template-columns: 38px 1fr;
    border: 0;
    border-bottom: 1px solid rgba(89, 74, 61, .18);
    border-radius: 0;
  }
  .schedule-card-wrap { margin: 0 -2px; padding: 4px; border-radius: 23px; }
  .schedule-card { padding: 24px 18px 26px; border-radius: 19px; }
  .schedule-card__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .schedule-card__header strong { text-align: left; }
  .schedule-form-grid { grid-template-columns: 1fr; gap: 14px; }
  .schedule-field--full { grid-column: auto; }
  .schedule-picker__heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .schedule-date-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .schedule-time-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .schedule-success { min-height: 570px; padding: 44px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .schedule-loading span,
  .schedule-submit.is-loading i {
    animation: none !important;
  }
  .schedule-submit,
  .schedule-date,
  .schedule-time-option span {
    transition: none !important;
  }
}
