.lhs-fcb-page {
  --fcb-copper: #ad5e3c;
  --fcb-copper-dark: #713017;
  --fcb-gold: #d3a36f;
  --fcb-ink: #241b17;
  --fcb-canvas: #f4e4d8;
  --fcb-paper: #fff9f3;
  --fcb-line: #d7aa8d;
  background: var(--fcb-canvas);
  color: var(--fcb-ink);
  min-height: calc(100vh - 150px);
  padding: clamp(28px, 5vw, 64px) 20px;
}

.lhs-fcb-shell {
  margin: 0 auto;
  max-width: 1180px;
}

.lhs-fcb-heading {
  margin: 0 auto 28px;
  max-width: 760px;
  text-align: center;
}

.lhs-fcb-kicker {
  color: var(--fcb-copper-dark);
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 8px;
}

.lhs-fcb-heading h1 {
  color: var(--fcb-ink);
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  line-height: 1.02;
  margin: 0 0 12px;
}

.lhs-fcb-heading > p:last-child {
  font-size: 1.15rem;
  line-height: 1.65;
  margin: 0;
}

.lhs-fcb-calendar {
  align-items: stretch;
  background: var(--fcb-paper);
  border: 1px solid rgba(113, 48, 23, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(75, 42, 28, 0.12);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  overflow: hidden;
}

.lhs-fcb-picker,
.lhs-fcb-form {
  padding: clamp(24px, 4vw, 44px);
}

.lhs-fcb-picker {
  border-inline-end: 1px solid rgba(113, 48, 23, 0.16);
}

.lhs-fcb-picker h2,
.lhs-fcb-form h2 {
  color: var(--fcb-copper-dark);
  font-size: 1.35rem;
  margin: 0 0 16px;
}

.lhs-fcb-picker h2:not(:first-child) {
  margin-top: 30px;
}

.lhs-fcb-date-list {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-height: 178px;
  overflow: auto;
  padding: 2px;
}

.lhs-fcb-date,
.lhs-fcb-slot span {
  align-items: center;
  background: #fff;
  border: 1px solid var(--fcb-line);
  border-radius: 6px;
  color: var(--fcb-ink);
  display: flex;
  font: inherit;
  font-weight: 700;
  justify-content: center;
  min-height: 48px;
  padding: 9px 10px;
  text-align: center;
}

.lhs-fcb-date {
  cursor: pointer;
}

.lhs-fcb-date:hover,
.lhs-fcb-date.is-selected,
.lhs-fcb-date[aria-pressed="true"] {
  background: var(--fcb-copper-dark);
  border-color: var(--fcb-copper-dark);
  color: #fff;
}

.lhs-fcb-slots {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 104px;
}

.lhs-fcb-slot {
  cursor: pointer;
  display: block;
  margin: 0;
  position: relative;
}

.lhs-fcb-slot input {
  inset: 50% auto auto 50%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.lhs-fcb-slot input:checked + span {
  background: var(--fcb-copper);
  border-color: var(--fcb-copper);
  color: #fff;
}

.lhs-fcb-date:focus-visible,
.lhs-fcb-slot input:focus-visible + span,
.lhs-fcb-field input:focus-visible,
.lhs-fcb-consent input:focus-visible,
.lhs-fcb-submit:focus-visible {
  outline: 3px solid #1f5f78;
  outline-offset: 3px;
}

.lhs-fcb-form {
  background: #f8eadf;
  display: flex;
  flex-direction: column;
}

.lhs-fcb-field {
  display: grid;
  font-weight: 700;
  gap: 6px;
  margin-bottom: 14px;
}

.lhs-fcb-field small {
  font-size: 0.8rem;
  font-weight: 500;
}

.lhs-fcb-field input {
  background: #fff;
  border: 1px solid #9b715d;
  border-radius: 5px;
  color: var(--fcb-ink);
  font: inherit;
  min-height: 48px;
  padding: 9px 12px;
  width: 100%;
}

.lhs-fcb-consent {
  align-items: flex-start;
  display: grid;
  gap: 9px;
  grid-template-columns: 20px minmax(0, 1fr);
  line-height: 1.5;
  margin: 6px 0 18px;
}

.lhs-fcb-consent input {
  height: 19px;
  margin-top: 3px;
  width: 19px;
}

.lhs-fcb-consent a {
  color: var(--fcb-copper-dark);
  font-weight: 800;
  text-decoration: underline;
}

.lhs-fcb-submit {
  background: var(--fcb-copper-dark);
  border: 2px solid var(--fcb-copper-dark);
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 1.1rem;
  font-weight: 800;
  min-height: 52px;
  padding: 10px 18px;
  width: 100%;
}

.lhs-fcb-submit:hover {
  background: var(--fcb-copper);
  border-color: var(--fcb-copper);
}

.lhs-fcb-submit:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.lhs-fcb-form-status {
  font-weight: 700;
  line-height: 1.5;
  margin: 14px 0 0;
  min-height: 24px;
}

.lhs-fcb-form-status[data-status="error"] {
  color: #8a1919;
}

.lhs-fcb-form-status[data-status="success"] {
  color: #1e6337;
}

.lhs-fcb-empty,
.lhs-fcb-no-slots {
  background: var(--fcb-paper);
  border: 1px solid var(--fcb-line);
  border-radius: 6px;
  margin: 0;
  padding: 20px;
  text-align: center;
}

.lhs-fcb-honeypot {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

@media (max-width: 900px) {
  .lhs-fcb-calendar {
    grid-template-columns: 1fr;
  }

  .lhs-fcb-picker {
    border-block-end: 1px solid rgba(113, 48, 23, 0.16);
    border-inline-end: 0;
  }

  .lhs-fcb-date-list {
    grid-template-columns: repeat(4, minmax(132px, 1fr));
    max-height: none;
    overflow-x: auto;
  }
}

@media (max-width: 560px) {
  .lhs-fcb-page {
    min-height: 0;
    padding: 24px 12px 36px;
  }

  .lhs-fcb-heading {
    margin-bottom: 20px;
  }

  .lhs-fcb-heading h1 {
    font-size: 2.35rem;
  }

  .lhs-fcb-picker,
  .lhs-fcb-form {
    padding: 22px 16px;
  }

  .lhs-fcb-date-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 178px;
    overflow-y: auto;
  }

  .lhs-fcb-slots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .lhs-fcb-page *,
  .lhs-fcb-page *::before,
  .lhs-fcb-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

