:root {
  --night: #0a0a0f;
  --deep: #111118;
  --charcoal: #1a1a24;
  --slate: #2a2a38;
  --muted: #6b6b80;
  --silver: #a0a0b4;
  --cream: #f5f0e8;
  --warm: #e8ddd0;
  --gold: #c9a96e;
  --gold-light: #d4b87a;
  --sun: #d4a853;
  --moon: #8b9dc3;
  --danger: #d79a8f;
  --success: #9fbd92;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(201, 169, 110, 0.11), transparent 62%),
    radial-gradient(ellipse 55% 45% at 88% 34%, rgba(139, 157, 195, 0.08), transparent 58%),
    linear-gradient(180deg, #0a0a0f 0%, #151210 46%, #0a0a0f 100%);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 300;
}

a {
  color: inherit;
}

.font-serif {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.booking-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
}

.booking-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
  background: rgba(10, 10, 15, 0.86);
  backdrop-filter: blur(18px);
}

.booking-topbar__inner {
  width: min(1120px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-glyph {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--gold);
}

.brand-word {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  color: var(--cream);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--silver);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.topbar-actions a {
  text-decoration: none;
  transition: color 180ms ease;
}

.topbar-actions a:hover,
.topbar-actions a:focus-visible {
  color: var(--gold);
}

.booking-page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 72px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: 48px;
  align-items: start;
}

.booking-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.booking-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.75rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0;
}

.booking-title em {
  color: rgba(201, 169, 110, 0.84);
  font-style: italic;
}

.booking-copy {
  max-width: 34rem;
  margin: 28px 0 0;
  color: var(--silver);
  font-size: 0.96rem;
  line-height: 1.8;
}

.booking-divider {
  width: 64px;
  height: 1px;
  margin: 28px 0 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.booking-panel {
  border: 1px solid rgba(201, 169, 110, 0.16);
  border-radius: 8px;
  background: rgba(17, 17, 24, 0.72);
  box-shadow: 0 24px 84px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.panel-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--cream);
}

.panel-note {
  margin: 7px 0 0;
  color: var(--silver);
  font-size: 0.84rem;
  line-height: 1.6;
}

.step-pill {
  flex: 0 0 auto;
  align-self: flex-start;
  border: 1px solid rgba(201, 169, 110, 0.22);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.panel-body {
  padding: 24px;
}

.stepper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 22px;
}

.stepper__item {
  min-height: 5px;
  border-radius: 999px;
  background: rgba(42, 42, 56, 0.88);
}

.stepper__item.is-active,
.stepper__item.is-complete {
  background: linear-gradient(90deg, var(--gold), rgba(139, 157, 195, 0.72));
}

.field-grid {
  display: grid;
  gap: 16px;
}

.field-grid--two {
  grid-template-columns: 0.42fr 1fr;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--warm);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(160, 160, 180, 0.18);
  border-radius: 6px;
  padding: 0 14px;
  color: var(--cream);
  background: rgba(10, 10, 15, 0.58);
  font: inherit;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.field input:focus,
.field select:focus {
  border-color: rgba(201, 169, 110, 0.58);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
  background: rgba(10, 10, 15, 0.84);
}

.microcopy {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.65;
}

.call-line {
  margin: 12px 0 0;
  color: var(--silver);
  font-size: 0.82rem;
  font-style: italic;
}

.call-line a {
  color: var(--gold);
  text-decoration: none;
}

.primary-btn,
.secondary-btn,
.text-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 6px;
  border: 1px solid transparent;
  padding: 0 22px;
  font: inherit;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.primary-btn {
  width: 100%;
  margin-top: 22px;
  color: var(--gold);
  border-color: rgba(201, 169, 110, 0.44);
  background: rgba(201, 169, 110, 0.11);
  box-shadow: 0 0 28px rgba(201, 169, 110, 0.1);
}

.secondary-btn {
  color: var(--silver);
  border-color: rgba(160, 160, 180, 0.18);
  background: rgba(10, 10, 15, 0.36);
}

.text-btn {
  min-height: auto;
  padding: 0;
  color: var(--gold);
  background: transparent;
}

.primary-btn:hover,
.secondary-btn:hover,
.primary-btn:focus-visible,
.secondary-btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(201, 169, 110, 0.62);
  background: rgba(201, 169, 110, 0.16);
}

.primary-btn[disabled],
.secondary-btn[disabled],
.text-btn[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}

.status-line {
  min-height: 24px;
  margin-top: 14px;
  color: var(--silver);
  font-size: 0.82rem;
  line-height: 1.5;
}

.status-line.is-error {
  color: var(--danger);
}

.status-line.is-success {
  color: var(--success);
}

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

.otp-row input {
  min-height: 62px;
  padding: 0;
  text-align: center;
  font-size: 1.55rem;
  font-weight: 400;
}

.choice-grid {
  display: grid;
  gap: 12px;
}

.service-list {
  display: grid;
  gap: 12px;
}

.service-card,
.staff-card,
.date-chip,
.time-chip {
  border: 1px solid rgba(160, 160, 180, 0.16);
  border-radius: 8px;
  color: var(--cream);
  background: rgba(10, 10, 15, 0.34);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.service-card {
  width: 100%;
  padding: 18px;
  text-align: left;
}

.service-card:hover,
.service-card.is-selected,
.staff-card:hover,
.staff-card.is-selected,
.date-chip:hover,
.date-chip.is-selected,
.time-chip:hover,
.time-chip.is-selected {
  transform: translateY(-1px);
  border-color: rgba(201, 169, 110, 0.52);
  background: rgba(201, 169, 110, 0.08);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
}

.service-card[data-group="moon"].is-selected,
.service-card[data-group="moon"]:hover {
  border-color: rgba(139, 157, 195, 0.56);
  background: rgba(139, 157, 195, 0.09);
}

.choice-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.choice-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.42rem;
  font-weight: 300;
}

.choice-meta {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.choice-copy {
  margin: 8px 0 0;
  color: var(--silver);
  font-size: 0.84rem;
  line-height: 1.55;
}

.group-title {
  margin: 24px 0 12px;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.group-title:first-child {
  margin-top: 0;
}

.staff-row,
.date-grid,
.time-grid {
  display: grid;
  gap: 10px;
}

.staff-row {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.staff-card {
  min-height: 86px;
  padding: 14px;
  text-align: left;
}

.staff-card strong {
  display: block;
  font-weight: 400;
}

.staff-card span {
  display: block;
  margin-top: 7px;
  color: var(--silver);
  font-size: 0.78rem;
}

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

.date-chip {
  min-height: 74px;
  padding: 10px 6px;
  color: var(--silver);
  text-align: center;
}

.date-chip strong {
  display: block;
  color: var(--cream);
  font-size: 1.1rem;
  font-weight: 400;
}

.date-chip span {
  display: block;
  margin-top: 5px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.time-grid {
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
}

.time-chip {
  min-height: 46px;
  padding: 0 10px;
  color: var(--cream);
  font-size: 0.84rem;
}

.summary-list {
  display: grid;
  gap: 14px;
}

.summary-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(160, 160, 180, 0.1);
}

.summary-row:last-child {
  border-bottom: 0;
}

.summary-label {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.summary-value {
  color: var(--cream);
  line-height: 1.55;
}

body[data-page="confirm"] .panel-body {
  padding-top: 22px;
}

body[data-page="confirm"] .stepper {
  margin-bottom: 20px;
}

body[data-page="confirm"] .summary-list {
  gap: 10px;
}

body[data-page="confirm"] .summary-row {
  padding-bottom: 10px;
}

body[data-page="confirm"] .primary-btn {
  margin-top: 16px;
}

.consent-line,
.notice {
  margin-top: 20px;
  border: 1px solid rgba(201, 169, 110, 0.16);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--silver);
  background: rgba(201, 169, 110, 0.06);
  font-size: 0.8rem;
  line-height: 1.65;
}

body[data-page="confirm"] .consent-line {
  margin-top: 16px;
  padding: 12px 16px;
}

.notice.is-conflict {
  border-color: rgba(215, 154, 143, 0.24);
  color: var(--danger);
  background: rgba(215, 154, 143, 0.08);
}

.bundle-summary {
  margin-top: 14px;
  border: 1px solid rgba(201, 169, 110, 0.18);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--silver);
  background: rgba(201, 169, 110, 0.06);
  font-size: 0.8rem;
  line-height: 1.6;
}

.bundle-summary strong {
  display: block;
  margin-bottom: 4px;
  color: var(--cream);
  font-weight: 400;
}

.mobile-only {
  display: none;
}

[hidden] {
  display: none !important;
}

@media (max-width: 900px) {
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .booking-page {
    padding-top: 30px;
  }

  .booking-copy {
    margin-top: 20px;
  }
}

@media (max-width: 640px) {
  .booking-topbar__inner,
  .booking-page {
    width: min(100% - 24px, 1120px);
  }

  .topbar-actions {
    display: none;
  }

  .mobile-only {
    display: inline-flex;
  }

  .panel-head,
  .panel-body {
    padding: 18px;
  }

  .field-grid--two {
    grid-template-columns: 1fr;
  }

  .otp-row {
    gap: 6px;
  }

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

  .summary-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
