.interior-main {
  flex: 1;
  display: flex;
}

body.page-book {
  height: 100dvh;
  overflow: hidden;
}

body.page-book .site-shell {
  display: flex;
  min-height: 100dvh;
  height: 100dvh;
  overflow: hidden;
  padding-top: calc(var(--site-dock-height) + 10px + env(safe-area-inset-top));
  padding-bottom: calc(14px + env(safe-area-inset-bottom));
}

body.page-book .interior-main {
  min-height: 0;
  height: 100%;
}

.book-section,
.dashboard-section {
  width: 100%;
  border-radius: 36px;
  border: 1px solid rgba(175, 76, 0, 0.12);
  background:
    radial-gradient(circle at top left, rgba(255, 252, 247, 0.78), transparent 28%),
    linear-gradient(180deg, rgba(252, 239, 225, 0.92), rgba(245, 214, 186, 0.88));
  box-shadow: var(--paper-shadow);
}

.book-section {
  padding: clamp(18px, 2.2vh, 28px) clamp(20px, 2.6vw, 34px);
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.8vh, 22px);
  min-height: calc(100dvh - var(--site-dock-height) - 116px);
  height: 100%;
}

body[data-booking-step="0"] {
  background:
    radial-gradient(circle at top center, rgba(255, 117, 3, 0.18), transparent 24%),
    radial-gradient(circle at 18% 16%, rgba(175, 76, 0, 0.14), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(255, 245, 233, 0.46), transparent 22%),
    linear-gradient(180deg, #f6cfb0 0%, #efc09c 100%);
}

body[data-booking-step="0"] .site-shell {
  width: 100%;
  padding: calc(var(--site-dock-height) + 8px + env(safe-area-inset-top)) 0 0;
}

body[data-booking-step="0"] .interior-main {
  min-height: calc(100dvh - var(--site-dock-height) - 8px - env(safe-area-inset-top));
}

body[data-booking-step="0"] .book-section {
  min-height: calc(100dvh - var(--site-dock-height) - 8px - env(safe-area-inset-top));
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

body[data-booking-step="0"] .booking-wizard-form {
  min-height: 100%;
  padding: 0;
  border: 0;
  background: none;
}

.dashboard-section {
  padding: clamp(24px, 2.8vw, 40px);
  display: grid;
  gap: 26px;
}

.section-heading h1,
.section-heading h2 {
  font-size: clamp(3.15rem, 7vw, 5.8rem);
}

body.page-book .section-heading {
  gap: 8px;
  flex: 0 0 auto;
}

body.page-book .section-heading p:last-child {
  max-width: 50ch;
  font-size: 0.94rem;
  line-height: 1.45;
}

body.page-book .section-heading h2 {
  font-size: clamp(2.7rem, 5.5vw, 4.7rem);
}

.wizard-progress {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.progress-step {
  min-height: 46px;
  border-radius: var(--radius-pill);
  border: 0;
  background: rgba(255, 245, 233, 0.78);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 10px;
  font-family: "Fjalla One", Impact, sans-serif;
  font-size: 0.92rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(113, 48, 0, 0.56);
}

.progress-step.is-current {
  color: #fff7ef;
  background: var(--cobalt);
  box-shadow: none;
}

.progress-step.is-complete {
  color: var(--cobalt-deep);
  background: rgba(255, 117, 3, 0.12);
}

.booking-wizard-form {
  display: grid;
  flex: 1;
  grid-template-rows: minmax(0, 1fr) auto auto;
  gap: clamp(10px, 1.6vh, 14px);
  min-height: 0;
  height: 100%;
  padding: clamp(14px, 1.8vh, 22px);
  border-radius: 28px;
  border: 1px solid rgba(175, 76, 0, 0.1);
  background: rgba(252, 239, 225, 0.88);
  overflow: hidden;
}

.wizard-stage {
  position: relative;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.wizard-step {
  min-height: 0;
}

body.page-book:not([data-booking-step="0"]) .wizard-step:not(.wizard-step--character-select) {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.4vh, 14px);
  overflow: hidden;
}

body.page-book:not([data-booking-step="0"]) .wizard-step--location {
  align-content: start;
}

body.page-book:not([data-booking-step="0"]) .wizard-step[data-step="2"] {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.92fr);
  grid-template-areas:
    "title title"
    "copy copy"
    "calendar timepanel";
  align-content: stretch;
  align-items: start;
  gap: 8px;
}

body.page-book:not([data-booking-step="0"]) .wizard-step[data-step="2"] h3 {
  grid-area: title;
}

body.page-book:not([data-booking-step="0"]) .wizard-step[data-step="2"] .step-copy {
  grid-area: copy;
}

body.page-book:not([data-booking-step="0"]) .wizard-step[data-step="2"] .calendar-shell {
  grid-area: calendar;
  width: 100%;
  justify-self: stretch;
}

body.page-book:not([data-booking-step="0"]) .wizard-step[data-step="2"] .time-range-panel {
  grid-area: timepanel;
  align-self: start;
  width: 100%;
}

.wizard-step h3 {
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
}

.step-copy {
  margin: 0;
  max-width: 42ch;
  font-size: 0.94rem;
  line-height: 1.45;
  color: var(--cobalt-muted);
}

.robot-option,
.event-type-option,
.location-search-result,
.calendar-day,
.calendar-nav {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.wizard-step--character-select {
  min-height: inherit;
  height: 100%;
  overflow: hidden;
}

.character-select-screen {
  position: relative;
  height: calc(100dvh - var(--site-dock-height) - 8px - env(safe-area-inset-top));
  max-height: calc(100dvh - var(--site-dock-height) - 8px - env(safe-area-inset-top));
  min-height: calc(100dvh - var(--site-dock-height) - 8px - env(safe-area-inset-top));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) clamp(154px, 22dvh, 188px);
  gap: clamp(12px, 2vh, 20px);
  padding: clamp(18px, 2.8vw, 30px);
  color: var(--cobalt-deep);
  background: none;
  overflow: hidden;
}

.character-select-screen::before {
  display: none;
}

.character-select-screen::after {
  display: none;
}

.character-select-backdrop {
  display: none;
}

.character-select-header,
.character-select-stage,
.character-select-roster {
  position: relative;
  z-index: 1;
}

.character-select-header {
  display: grid;
  gap: 8px;
  max-width: min(640px, 92vw);
}

.character-roster-label,
.character-roster-hint {
  font-family: "Fjalla One", Impact, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.character-select-title {
  font-size: clamp(3.3rem, 6.8vw, 6.6rem);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--cobalt-strong);
  text-shadow: none;
}

.character-select-copy {
  max-width: 52ch;
  font-size: 0.94rem;
  line-height: 1.42;
  color: var(--cobalt-muted);
}

.character-select-stage {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.18fr);
  gap: clamp(12px, 2vw, 24px);
  height: 100%;
  min-height: 0;
  align-items: stretch;
}

.character-stage-copy {
  align-self: center;
  max-width: 420px;
  padding: clamp(16px, 2vw, 24px);
  border-radius: 30px;
  border: 0;
  background: rgba(252, 241, 230, 0.64);
  box-shadow: none;
  display: grid;
  gap: 8px;
}

.character-stage-name {
  font-size: clamp(2.4rem, 4.4vw, 4.6rem);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--cobalt-strong);
}

.character-stage-role {
  font-family: "Fjalla One", Impact, sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(113, 48, 0, 0.78);
}

.character-stage-description {
  font-size: 0.92rem;
  line-height: 1.42;
  color: var(--cobalt-muted);
}

.character-select-next {
  margin-top: 8px;
  width: fit-content;
  min-width: 164px;
  box-shadow: 0 10px 20px rgba(175, 76, 0, 0.16);
}

.character-stage-hero {
  position: relative;
  min-height: 0;
  height: 100%;
  border-radius: 34px;
  border: 0;
  background: rgba(252, 241, 230, 0.9);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(12px, 1.6vw, 20px);
  box-shadow: none;
}

.character-stage-hero::before,
.character-stage-hero::after {
  display: none;
}

.character-stage-glow,
.character-stage-ring,
.character-stage-image,
.character-stage-fallback,
.character-stage-status {
  grid-area: 1 / 1;
}

.character-stage-glow,
.character-stage-ring {
  position: absolute;
  pointer-events: none;
}

.character-stage-glow {
  display: none;
}

.character-stage-ring {
  display: none;
}

.character-stage-image {
  position: absolute;
  bottom: -2%;
  top: auto;
  left: 50%;
  z-index: 2;
  width: auto;
  max-width: none;
  height: min(110%, 54dvh);
  max-height: none;
  transform: translateX(-50%);
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 16px 20px rgba(115, 54, 7, 0.14));
}

.character-stage-fallback {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: min(44%, 240px);
  aspect-ratio: 1;
  border-radius: 32px;
  background: rgba(255, 247, 239, 0.92);
  font-family: "Fjalla One", Impact, sans-serif;
  font-size: clamp(4.6rem, 14vw, 9rem);
  line-height: 1;
  color: rgba(175, 76, 0, 0.86);
}

.character-stage-fallback[hidden] {
  display: none;
}

.character-stage-hero.is-custom {
  background: rgba(247, 232, 218, 0.92);
}

.character-stage-status {
  position: relative;
  z-index: 2;
  align-self: end;
  justify-self: center;
  margin: 0;
  font-family: "Fjalla One", Impact, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cobalt-muted);
}

.character-select-roster {
  display: grid;
  gap: 8px;
  min-height: 0;
  padding-top: 10px;
  border-top: 0;
  background: none;
}

.character-select-roster-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 clamp(20px, 3vw, 40px);
}

.character-roster-label {
  font-size: 0.78rem;
  color: rgba(113, 48, 0, 0.58);
}

.character-roster-hint {
  font-size: 0.74rem;
  color: rgba(175, 76, 0, 0.76);
}

.robot-options--character {
  --selector-card-width: 152px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: center;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  padding: 6px clamp(20px, 3vw, 40px) 10px;
}

.robot-options--character::-webkit-scrollbar {
  display: none;
}

.robot-option {
  flex: 0 0 var(--selector-card-width);
  height: 112px;
  padding: 8px 10px 10px;
  border: 0;
  border-radius: 26px;
  background: rgba(253, 241, 228, 0.62);
  color: var(--cobalt-deep);
  text-align: left;
  scroll-snap-align: center;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(175, 76, 0, 0.08);
}

.robot-option:hover:not(:disabled),
.event-type-option:hover,
.calendar-day:hover:not(:disabled),
.calendar-nav:hover,
.location-search-result:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(115, 54, 7, 0.12);
  border-color: rgba(255, 117, 3, 0.24);
}

.robot-option-frame,
.robot-option-meta {
  display: grid;
}

.robot-option-frame {
  height: 100%;
  min-height: 0;
  grid-template-rows: minmax(0, 1fr);
  overflow: hidden;
}

.robot-avatar {
  grid-row: 1;
  grid-column: 1;
  min-height: 0;
  height: 100%;
  border-radius: 20px;
  border: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(255, 248, 241, 0.46), rgba(239, 192, 156, 0.2));
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 4px;
}

.robot-avatar--locked {
  padding: 8px;
}

.robot-avatar img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.robot-avatar--locked img {
  width: auto;
  height: clamp(52px, 4.8vw, 66px);
  max-width: 78%;
  max-height: 100%;
}

.robot-avatar-fallback {
  font-family: "Fjalla One", Impact, sans-serif;
  font-size: 2rem;
  color: #fff7ef;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 117, 3, 0.9), rgba(175, 76, 0, 0.92));
}

.robot-avatar-fallback--custom {
  font-size: 2.8rem;
  letter-spacing: -0.06em;
}

.robot-option-meta {
  grid-row: 1;
  grid-column: 1;
  align-self: end;
  z-index: 1;
  gap: 4px;
  padding: 0 8px 8px;
}

.robot-option-name {
  font-family: "Fjalla One", Impact, sans-serif;
  font-size: 1.06rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.robot-option-subtitle,
.review-list dt,
.booking-card-kicker,
.summary-card p,
.booking-meta dt,
.booking-form label,
.event-other-wrap label,
.location-search-field span,
.location-search-powered {
  font-family: "Fjalla One", Impact, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.robot-option-subtitle {
  font-size: 0.7rem;
  line-height: 1.35;
  color: rgba(113, 48, 0, 0.7);
}

.robot-option.selected {
  background: linear-gradient(180deg, rgba(255, 141, 47, 0.92), rgba(255, 117, 3, 0.96));
  box-shadow: 0 14px 26px rgba(175, 76, 0, 0.18);
}

.robot-option.selected .robot-avatar {
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.26), transparent 32%),
    linear-gradient(180deg, rgba(255, 244, 232, 0.26), rgba(255, 199, 154, 0.18));
}

.robot-option.selected .robot-option-name,
.robot-option.selected .robot-option-subtitle {
  color: #fff7ef;
}

.robot-option--locked {
  opacity: 0.54;
  filter: saturate(0.88);
  cursor: not-allowed;
}

.robot-option--custom .robot-option-frame,
.robot-option--locked .robot-option-frame {
  grid-template-rows: auto auto;
  align-content: center;
  justify-items: center;
  gap: 10px;
}

.robot-option--custom .robot-avatar,
.robot-option--locked .robot-avatar {
  grid-row: auto;
  grid-column: auto;
  width: 72px;
  height: 72px;
  min-height: 72px;
  align-self: center;
}

.robot-option--custom .robot-avatar {
  background: linear-gradient(180deg, rgba(255, 117, 3, 0.88), rgba(175, 76, 0, 0.92));
}

.robot-option--custom .robot-option-meta,
.robot-option--locked .robot-option-meta {
  grid-row: auto;
  grid-column: auto;
  align-self: auto;
  justify-items: center;
  gap: 0;
  padding: 0;
  text-align: center;
}

.robot-option--custom .robot-option-name,
.robot-option--locked .robot-option-name {
  font-size: 1rem;
}

.robot-option--locked:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(175, 76, 0, 0.12);
}

.calendar-shell {
  border-radius: 30px;
  border: 1px solid rgba(175, 76, 0, 0.12);
  background: rgba(255, 247, 239, 0.86);
  padding: 10px;
  flex: 1 1 auto;
  min-height: 0;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.calendar-label {
  font-family: "Fjalla One", Impact, sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  letter-spacing: -0.03em;
}

.calendar-nav {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(175, 76, 0, 0.12);
  background: rgba(254, 244, 232, 0.96);
  color: var(--cobalt-deep);
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.calendar-weekdays {
  margin-top: 8px;
}

.calendar-weekdays span {
  text-align: center;
  font-family: "Fjalla One", Impact, sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(113, 48, 0, 0.52);
}

.calendar-grid {
  margin-top: 6px;
}

.calendar-day {
  min-height: 30px;
  border-radius: 12px;
  border: 1px solid rgba(175, 76, 0, 0.1);
  background: rgba(254, 244, 232, 0.96);
  font-family: "Fjalla One", Impact, sans-serif;
  font-size: 0.82rem;
  color: var(--cobalt-deep);
}

.calendar-day.muted {
  color: rgba(113, 48, 0, 0.34);
}

.calendar-day.selected {
  color: #fff7ef;
  background: linear-gradient(180deg, var(--cobalt) 0%, var(--cobalt-strong) 100%);
}

.calendar-day:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.location-step-panel {
  display: grid;
  gap: 12px;
  align-content: start;
  flex: 1 1 auto;
  min-height: 0;
  max-width: min(860px, 100%);
  padding: 16px;
  border-radius: 30px;
  border: 1px solid rgba(175, 76, 0, 0.12);
  background: rgba(255, 247, 239, 0.82);
}

.location-search-field {
  display: grid;
  gap: 8px;
}

.time-range-panel {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 24px;
  border: 1px solid rgba(175, 76, 0, 0.12);
  background: rgba(255, 247, 239, 0.78);
}

.location-search-field span,
.location-step-hint,
.location-search-powered,
.time-range-title,
.time-field span {
  font-family: "Fjalla One", Impact, sans-serif;
  font-size: 0.68rem;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(113, 48, 0, 0.62);
}

.time-range-title {
  margin: 0;
}

.location-search-field input,
.time-field input,
.event-other-wrap input,
.booking-form input,
.booking-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid rgba(175, 76, 0, 0.12);
  background: rgba(255, 247, 239, 0.92);
  color: var(--cobalt-deep);
}

.location-search-field input {
  min-height: 84px;
  border-radius: 24px;
  font-family: "Fjalla One", Impact, sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  letter-spacing: -0.03em;
  padding: 16px 18px;
}

.location-search-results {
  display: grid;
  gap: 8px;
}

.location-search-results[hidden] {
  display: none;
}

.location-search-result {
  width: 100%;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(175, 76, 0, 0.12);
  background: rgba(255, 250, 245, 0.96);
  text-align: left;
  display: grid;
  gap: 4px;
}

.location-search-result-main {
  font-family: "Fjalla One", Impact, sans-serif;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--cobalt-deep);
}

.location-search-result-secondary {
  font-size: 0.84rem;
  line-height: 1.35;
  color: var(--cobalt-muted);
}

.location-search-message {
  margin: 0;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(175, 76, 0, 0.1);
  background: rgba(255, 250, 245, 0.92);
  color: var(--cobalt-muted);
}

.location-service-area-notice {
  margin: 0;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(185, 93, 16, 0.22);
  background: rgba(255, 232, 209, 0.88);
  color: rgba(99, 39, 0, 0.92);
  line-height: 1.5;
}

.location-step-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.location-step-hint,
.location-search-powered {
  margin: 0;
}

.location-step-hint {
  color: rgba(113, 48, 0, 0.72);
  text-transform: none;
  letter-spacing: 0;
  font-family: inherit;
  line-height: 1.45;
}

.time-range-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

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

.time-field input {
  min-height: 74px;
  border-radius: 22px;
  font-family: "Fjalla One", Impact, sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  letter-spacing: -0.03em;
  text-align: center;
  padding: 12px 14px;
}

.time-field input:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.event-type-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  flex: 1 1 auto;
  min-height: 0;
}

.event-type-option {
  min-height: 0;
  padding: 14px 12px;
  border-radius: 22px;
  border: 1px solid rgba(175, 76, 0, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 247, 239, 0.96), rgba(245, 214, 186, 0.9)),
    rgba(255, 247, 239, 0.96);
  display: grid;
  gap: 10px;
  justify-items: center;
  align-content: center;
}

.event-type-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  border: 1px solid rgba(175, 76, 0, 0.08);
  background: rgba(255, 242, 229, 0.96);
  display: grid;
  place-items: center;
  padding: 10px;
}

.event-type-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.event-type-label {
  font-family: "Fjalla One", Impact, sans-serif;
  font-size: 0.92rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cobalt-deep);
  text-align: center;
}

.event-type-option.selected {
  border-color: rgba(175, 76, 0, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 221, 191, 0.96), rgba(255, 244, 232, 0.98)),
    rgba(255, 247, 239, 0.98);
  box-shadow: 0 16px 28px rgba(175, 76, 0, 0.12);
}

.event-other-wrap,
.booking-form {
  display: grid;
  gap: 10px;
}

.booking-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  max-width: 100%;
}

.booking-form > * {
  min-width: 0;
}

.booking-form label:last-child {
  grid-column: 1 / -1;
}

.event-other-wrap {
  max-width: 420px;
  margin-top: 0;
}

.booking-form label,
.event-other-wrap label {
  display: grid;
  gap: 6px;
  font-size: 0.7rem;
  color: rgba(113, 48, 0, 0.58);
  min-width: 0;
  width: 100%;
}

.booking-form textarea {
  min-height: 92px;
  resize: none;
}

.booking-form input,
.booking-form textarea {
  min-width: 0;
  max-width: 100%;
}

.review-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  flex: 1 1 auto;
  min-height: 0;
  align-content: start;
}

.review-list div,
.dashboard-auth-panel,
.dashboard-empty,
.booking-card,
.summary-card {
  border-radius: 26px;
  border: 1px solid rgba(175, 76, 0, 0.12);
  background: rgba(255, 247, 239, 0.9);
}

.review-list div {
  padding: 12px 14px;
}

.review-list dt {
  font-size: 0.66rem;
  color: rgba(113, 48, 0, 0.54);
}

.review-list dd {
  margin: 8px 0 0;
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--cobalt-deep);
}

.auth-gate-message,
.form-message {
  border-radius: 16px;
  border: 1px solid transparent;
  padding: 10px 14px;
  line-height: 1.4;
  font-size: 0.92rem;
}

.auth-gate-message.info,
.form-message.info,
.status-requested {
  color: var(--cobalt-deep);
  background: rgba(255, 117, 3, 0.12);
  border-color: rgba(175, 76, 0, 0.16);
}

.auth-gate-message.success,
.form-message.success,
.status-accepted {
  color: var(--success);
  background: rgba(227, 242, 234, 0.96);
  border-color: rgba(34, 107, 69, 0.16);
}

.auth-gate-message.error,
.form-message.error,
.status-rejected {
  color: var(--warning);
  background: rgba(250, 231, 233, 0.96);
  border-color: rgba(145, 67, 83, 0.18);
}

.status-cancelled {
  color: rgba(113, 48, 0, 0.72);
  background: rgba(237, 232, 224, 0.96);
  border-color: rgba(175, 76, 0, 0.1);
}

.form-message {
  display: none;
}

.form-message.success,
.form-message.error,
.form-message.info {
  display: block;
}

.wizard-step--success {
  height: 100%;
  display: grid;
  place-items: center;
  min-height: 0;
}

.success-shell {
  width: min(560px, 100%);
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 14px;
  text-align: center;
  padding: clamp(20px, 3vw, 32px);
}

.success-checkmark {
  width: clamp(96px, 12vw, 128px);
  height: clamp(96px, 12vw, 128px);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(255, 141, 47, 0.18), rgba(255, 117, 3, 0.24));
  color: var(--cobalt);
  font-family: "Fjalla One", Impact, sans-serif;
  font-size: clamp(3.8rem, 7vw, 5.2rem);
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(175, 76, 0, 0.12);
}

.wizard-step--success h3 {
  font-size: clamp(2.4rem, 4vw, 3.3rem);
}

.success-message {
  margin: 0;
  max-width: 44ch;
  line-height: 1.45;
  color: var(--cobalt-muted);
}

.restart-button {
  border: 0;
  margin-top: 6px;
}

.wizard-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.wizard-btn {
  min-width: 136px;
}

.wizard-btn[disabled] {
  opacity: 0.56;
  cursor: not-allowed;
}

.dashboard-auth-panel,
.dashboard-empty,
.booking-card {
  padding: 22px;
}

.dashboard-auth-panel {
  max-width: 560px;
  display: grid;
  gap: 12px;
}

.dashboard-auth-panel.error {
  background: rgba(250, 231, 233, 0.82);
}

.dashboard-auth-panel h2,
.dashboard-empty h2,
.booking-card h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.dashboard-auth-panel p,
.dashboard-empty p,
.booking-notes,
.booking-card-robot,
.dashboard-message {
  line-height: 1.58;
  color: var(--cobalt-muted);
}

.dashboard-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.summary-card {
  padding: 16px 18px;
}

.summary-card p {
  font-size: 0.72rem;
  color: rgba(113, 48, 0, 0.56);
}

.summary-card strong {
  display: block;
  margin-top: 8px;
  font-family: "Fjalla One", Impact, sans-serif;
  font-size: clamp(2.2rem, 5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--cobalt-deep);
}

.dashboard-list {
  display: grid;
  gap: 16px;
}

.dashboard-empty {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.booking-card {
  display: grid;
  gap: 18px;
}

.booking-card-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.booking-card-kicker {
  margin-bottom: 8px;
  font-size: 0.72rem;
  color: rgba(113, 48, 0, 0.54);
}

.booking-meta {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.booking-meta div {
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(249, 244, 235, 0.94);
}

.booking-meta dt {
  margin-bottom: 8px;
  font-size: 0.7rem;
  color: rgba(113, 48, 0, 0.54);
}

.booking-meta dd {
  margin: 0;
  line-height: 1.5;
  color: var(--cobalt-deep);
}

.status-pill {
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-family: "Fjalla One", Impact, sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .wizard-progress {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

@media (max-width: 980px) {
  .book-section,
  .dashboard-section {
    border-radius: 32px;
  }

  .book-section {
    min-height: auto;
  }

  body.page-book .book-section {
    min-height: 0;
  }

  .section-heading h1,
  .section-heading h2 {
    font-size: clamp(2.6rem, 10vw, 4.2rem);
  }

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

  body.page-book:not([data-booking-step="0"]) .wizard-step[data-step="2"] {
    display: flex;
    grid-template-columns: none;
    grid-template-areas: none;
  }

  body.page-book:not([data-booking-step="0"]) .wizard-step[data-step="2"] .calendar-shell {
    flex: 0 0 auto;
  }

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

  .wizard-nav {
    flex-direction: row;
  }

  .wizard-btn {
    width: auto;
  }
}

@media (max-width: 640px) {
  body.page-book .site-shell {
    padding-top: calc(var(--site-dock-height) + 12px + env(safe-area-inset-top));
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
  }

  .book-section,
  .dashboard-section {
    padding: 16px 14px;
    border-radius: 28px;
  }

  .wizard-progress {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .progress-step {
    min-height: 36px;
    padding: 0 8px;
    font-size: 0.78rem;
  }

  .booking-wizard-form {
    padding: 10px;
    border-radius: 20px;
    gap: 8px;
  }

  .wizard-step h3,
  .dashboard-auth-panel h2,
  .dashboard-empty h2,
  .booking-card h2 {
    font-size: 1.55rem;
  }

  .step-copy {
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .calendar-shell {
    padding: 8px;
    border-radius: 18px;
  }

  .calendar-label {
    font-size: 0.96rem;
  }

  .calendar-nav {
    width: 32px;
    height: 32px;
  }

  .calendar-weekdays,
  .calendar-grid {
    gap: 4px;
  }

  .calendar-weekdays span {
    font-size: 0.52rem;
  }

  .calendar-day {
    min-height: 28px;
    border-radius: 9px;
    font-size: 0.74rem;
  }

  .event-type-options,
  .booking-meta {
    grid-template-columns: 1fr;
  }

  .location-step-panel {
    padding: 10px;
    border-radius: 20px;
    gap: 10px;
  }

  .location-search-field input {
    min-height: 64px;
    border-radius: 18px;
    font-size: 1.08rem;
    padding: 12px 14px;
  }

  .location-search-result,
  .location-search-message {
    border-radius: 18px;
    padding: 12px 14px;
  }

  .location-step-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .time-range-panel {
    padding: 8px;
    gap: 8px;
  }

  .time-field input {
    min-height: 56px;
    font-size: 1.1rem;
    border-radius: 18px;
  }

  .event-type-option {
    min-height: 0;
    border-radius: 18px;
    padding: 12px 10px;
  }

  .event-type-icon {
    width: 52px;
    height: 52px;
  }

  .review-list div,
  .dashboard-auth-panel,
  .dashboard-empty,
  .booking-card,
  .summary-card {
    border-radius: 22px;
  }

  .booking-card-header {
    flex-direction: column;
    align-items: stretch;
  }

  .booking-form,
  .review-list {
    grid-template-columns: 1fr;
  }

  .booking-form {
    gap: 8px;
  }

  .booking-form textarea {
    min-height: 64px;
  }

  .wizard-nav {
    gap: 8px;
  }

  .wizard-btn {
    flex: 1 1 0;
    min-width: 0;
  }

  .success-shell {
    gap: 12px;
    padding: 12px;
  }

  .success-checkmark {
    width: 88px;
    height: 88px;
    font-size: 3.4rem;
  }
}

@media (max-width: 1100px) {
  .character-select-screen::after {
    left: 32px;
    width: 4px;
    opacity: 0.6;
  }

  .character-select-stage {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 10px;
  }

  .character-stage-copy {
    max-width: none;
    align-self: start;
  }

  .character-stage-hero {
    min-height: 0;
    height: 100%;
  }
}

@media (max-width: 640px) {
  body[data-booking-step="0"] .interior-main,
  body[data-booking-step="0"] .book-section,
  .character-select-screen {
    min-height: calc(100dvh - var(--site-dock-height) - 12px - env(safe-area-inset-top));
  }

  .character-select-screen {
    height: calc(100dvh - var(--site-dock-height) - 12px - env(safe-area-inset-top));
    max-height: calc(100dvh - var(--site-dock-height) - 12px - env(safe-area-inset-top));
    grid-template-rows: auto minmax(0, 1fr) minmax(164px, 27dvh);
    gap: 8px;
    padding: 14px 0 0;
  }

  .character-select-screen::after {
    left: 18px;
    opacity: 0.5;
  }

  .character-select-header,
  .character-select-stage,
  .character-select-roster-head {
    padding-inline: 18px;
  }

  .character-select-title {
    font-size: clamp(2.5rem, 12vw, 4.1rem);
  }

  .character-select-copy {
    max-width: none;
    font-size: 0.95rem;
  }

  .character-select-stage {
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 8px;
  }

  .character-stage-copy {
    gap: 4px;
    padding: 10px 12px 12px;
    border-radius: 20px;
  }

  .character-roster-label,
  .character-roster-hint {
    font-size: 0.68rem;
  }

  .character-stage-name {
    font-size: clamp(1.95rem, 10vw, 3rem);
  }

  .character-stage-role {
    font-size: 0.74rem;
  }

  .character-stage-description {
    display: none;
  }

  .character-select-next {
    margin-top: 4px;
    width: 100%;
    min-height: 48px;
  }

  .character-stage-hero {
    order: -1;
    min-height: 0;
    padding: 10px 8px 0;
    border-radius: 24px;
  }

  .character-stage-ring {
    inset: 20% 10%;
  }

  .character-stage-image {
    width: auto;
    max-width: none;
    height: min(116%, 38dvh);
    max-height: none;
    bottom: -2%;
  }

  .character-stage-fallback {
    width: min(54vw, 200px);
    border-radius: 24px;
    font-size: clamp(4rem, 22vw, 7rem);
  }

  .character-select-roster {
    padding-top: 8px;
  }

  .robot-options--character {
    --selector-card-width: min(52vw, 182px);
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
    padding-inline: max(18px, calc(50% - (var(--selector-card-width) / 2)));
    padding-bottom: 6px;
  }

  .robot-option {
    height: 104px;
  }

  .robot-option-name {
    font-size: 1rem;
  }

  .robot-option-subtitle {
    font-size: 0.62rem;
  }
}
