:root {
  --book-bg: #000;
  --book-text: rgba(246, 246, 240, 0.96);
  --book-muted: rgba(246, 246, 240, 0.54);
  --book-faint: rgba(246, 246, 240, 0.1);
  --book-soft: rgba(246, 246, 240, 0.18);
}

.book-page-body {
  background: var(--book-bg);
  color: var(--book-text);
}

.book-site-header {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(18px);
}

.book-page {
  min-height: 100svh;
  background: #000;
}

.book-hero {
  width: min(100% - 2rem, 76rem);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(8rem, 14vh, 11rem) 0 clamp(3rem, 8vh, 6rem);
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
}

.book-kicker,
.step-eyebrow,
.booking-progress p {
  margin: 0;
  font-family: var(--mono, "IBM Plex Mono", monospace);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 246, 240, 0.44);
}

.book-hero h1 {
  max-width: 56rem;
  margin: 1.1rem 0 0;
  font-size: clamp(3.15rem, 7vw, 7.6rem);
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: -0.08em;
}

.book-subtext {
  max-width: 42rem;
  margin: 1.55rem 0 0;
  color: var(--book-muted);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: -0.025em;
}

.booking-flow {
  width: min(100%, 54rem);
  margin-top: clamp(2.75rem, 6vh, 4.5rem);
  border-top: 1px solid var(--book-soft);
  border-bottom: 1px solid var(--book-soft);
  padding: clamp(1.25rem, 3vw, 2rem) 0;
  text-align: left;
}

.booking-progress {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  margin-bottom: clamp(2rem, 5vh, 3rem);
}

.booking-progress__bar {
  height: 1px;
  background: var(--book-faint);
  overflow: hidden;
}

.booking-progress__bar span {
  display: block;
  width: 20%;
  height: 100%;
  background: rgba(246, 246, 240, 0.84);
  transition: width 280ms ease;
}

.booking-step h2,
.booking-success h2 {
  margin: 0.65rem 0 1.5rem;
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.step-help {
  max-width: 37rem;
  margin: -0.85rem 0 1.35rem;
  color: var(--book-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.choice-grid--type {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-grid--type .choice-button:last-child {
  grid-column: 1 / -1;
}

.choice-grid--budget {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.choice-button,
.date-button,
.time-button,
.booking-control,
.booking-success a {
  appearance: none;
  border: 1px solid var(--book-faint);
  color: var(--book-muted);
  background: rgba(255, 255, 255, 0.018);
  cursor: pointer;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.choice-button {
  min-height: 5.6rem;
  padding: 1.2rem;
  text-align: left;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  letter-spacing: -0.04em;
}

.choice-button span {
  display: block;
}

.choice-button small {
  display: block;
  max-width: 24rem;
  margin-top: 0.65rem;
  color: rgba(246, 246, 240, 0.48);
  font-size: 0.78rem;
  line-height: 1.45;
  letter-spacing: -0.015em;
}

.choice-button:hover,
.date-button:hover,
.time-button:hover,
.booking-control:hover,
.booking-success a:hover {
  color: var(--book-text);
  border-color: rgba(246, 246, 240, 0.34);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.choice-button.is-selected,
.date-button.is-selected,
.time-button.is-selected {
  color: #050505;
  border-color: rgba(246, 246, 240, 0.94);
  background: rgba(246, 246, 240, 0.92);
}

.choice-button.is-selected small {
  color: rgba(5, 5, 5, 0.64);
}

.custom-builder {
  margin-top: 0.85rem;
  padding: 1.15rem;
  border: 1px solid var(--book-soft);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.012)
    );
}

.custom-builder[hidden] {
  display: none;
}

.custom-builder__head {
  margin-bottom: 1rem;
}

.custom-builder__head h3 {
  margin: 0.55rem 0 0.45rem;
  color: var(--book-text);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.custom-builder__head p:not(.step-eyebrow) {
  max-width: 35rem;
  margin: 0;
  color: var(--book-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.custom-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.custom-service-button {
  min-height: 3rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--book-faint);
  background: rgba(255, 255, 255, 0.018);
  color: var(--book-muted);
  text-align: left;
  cursor: pointer;
  font-size: 0.86rem;
  letter-spacing: -0.02em;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.custom-service-button:hover {
  color: var(--book-text);
  border-color: rgba(246, 246, 240, 0.34);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.custom-service-button.is-selected {
  color: #050505;
  border-color: rgba(246, 246, 240, 0.94);
  background: rgba(246, 246, 240, 0.92);
}

.date-time-picker {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 0.85rem;
}

.date-list,
.time-list {
  display: grid;
  gap: 0.55rem;
}

.date-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.time-list {
  align-content: start;
}

.date-button,
.time-button {
  min-height: 3.5rem;
  padding: 0.85rem 1rem;
  text-align: left;
  border-radius: 0;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field-grid label {
  display: grid;
  gap: 0.55rem;
  color: rgba(246, 246, 240, 0.68);
  font-size: 0.82rem;
}

.field-grid__wide {
  grid-column: 1 / -1;
}

.field-grid input,
.field-grid textarea {
  width: 100%;
  border: 1px solid var(--book-faint);
  background: rgba(255, 255, 255, 0.025);
  color: var(--book-text);
  padding: 1rem;
  border-radius: 0;
  outline: none;
}

.field-grid textarea {
  resize: vertical;
  min-height: 9rem;
}

.review-list {
  margin: 0;
  display: grid;
  border-top: 1px solid var(--book-faint);
}

.review-list div {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--book-faint);
}

.review-list dt {
  color: rgba(246, 246, 240, 0.44);
  font-size: 0.8rem;
}

.review-list dd {
  margin: 0;
  color: rgba(246, 246, 240, 0.86);
  white-space: pre-wrap;
}

.booking-note {
  color: var(--book-muted);
  line-height: 1.6;
}

.booking-error {
  min-height: 1.4rem;
  color: rgba(246, 246, 240, 0.92);
}

.booking-hidden {
  display: none;
}

.booking-controls {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: clamp(1.75rem, 4vh, 2.5rem);
}

.booking-control,
.booking-success a {
  min-height: 3.45rem;
  padding: 0 1.3rem;
  border-radius: 999rem;
  font-weight: 600;
}

.booking-control--next,
.booking-control--confirm {
  margin-left: auto;
  color: #050505;
  border-color: rgba(246, 246, 240, 0.92);
  background: rgba(246, 246, 240, 0.92);
}

.booking-control:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.booking-success {
  text-align: center;
  padding: clamp(2rem, 6vw, 4rem) 0;
}

.booking-success p:not(.step-eyebrow) {
  max-width: 34rem;
  margin: 0 auto 1.5rem;
  color: var(--book-muted);
  line-height: 1.65;
}

.booking-success a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid rgba(246, 246, 240, 0.9);
  outline-offset: 3px;
}

.timezone-note {
  margin: -0.65rem 0 1.25rem;
  color: var(--book-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.timezone-note strong {
  color: rgba(246, 246, 240, 0.9);
  font-weight: 500;
}

.date-button small,
.time-button small {
  display: block;
  margin-top: 0.35rem;
  color: rgba(246, 246, 240, 0.42);
  font-size: 0.72rem;
  line-height: 1.25;
}

.date-button.is-selected small,
.time-button.is-selected small {
  color: rgba(5, 5, 5, 0.66);
}

.success-times {
  width: min(100%, 34rem);
  margin: 1.5rem auto 1.75rem;
  border-top: 1px solid var(--book-faint);
  text-align: left;
}

.success-times div {
  display: grid;
  gap: 0.4rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--book-faint);
}

.success-times dt {
  color: rgba(246, 246, 240, 0.44);
  font-size: 0.78rem;
}

.success-times dd {
  margin: 0;
  color: rgba(246, 246, 240, 0.9);
}

@media (max-width: 980px) {
  .choice-grid--budget {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .choice-grid--budget .choice-button:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .book-hero {
    width: min(100% - 1.25rem, 44rem);
    padding-top: 7.5rem;
    text-align: left;
    justify-items: stretch;
  }

  .book-hero h1 {
    font-size: clamp(3rem, 15vw, 4.85rem);
  }

  .booking-flow {
    margin-top: 2.5rem;
  }

  .choice-grid,
  .choice-grid--type,
  .choice-grid--budget,
  .date-time-picker,
  .field-grid,
  .review-list div,
  .custom-service-grid {
    grid-template-columns: 1fr;
  }

  .date-list {
    grid-template-columns: 1fr;
  }

  .choice-button {
    min-height: 4.8rem;
  }

  .choice-grid--type .choice-button:last-child,
  .choice-grid--budget .choice-button:last-child {
    grid-column: auto;
  }

  .custom-builder {
    padding: 1rem;
  }

  .booking-controls {
    position: sticky;
    bottom: 0;
    padding: 0.85rem 0;
    background: #000;
  }

  .booking-control {
    flex: 1;
  }

  .book-site-header .main-nav {
    display: none;
  }
}






.custom-note {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.9rem;
  color: rgba(246, 246, 240, 0.68);
  font-size: 0.82rem;
}

.custom-note span {
  color: rgba(246, 246, 240, 0.68);
}

.custom-note textarea {
  width: 100%;
  min-height: 8rem;
  resize: vertical;
  border: 1px solid var(--book-faint);
  background: rgba(255, 255, 255, 0.025);
  color: var(--book-text);
  padding: 1rem;
  border-radius: 0;
  outline: none;
  font: inherit;
  line-height: 1.5;
}

.custom-note textarea::placeholder {
  color: rgba(246, 246, 240, 0.32);
}

.custom-note textarea:focus {
  border-color: rgba(246, 246, 240, 0.42);
  background: rgba(255, 255, 255, 0.04);
}
