:root {
  --color-text: #191f28;
  --color-text-secondary: #4e5968;
  --color-text-tertiary: #8b95a1;
  --color-background: #f7f8fa;
  --color-surface: #ffffff;
  --color-surface-weak: #f2f4f6;
  --color-border: #e5e8eb;
  --color-accent: #fee500;
  --color-accent-pressed: #f2d700;
  --color-danger: #e42939;
  --color-danger-weak: #fff0f1;
  --shadow-card: 0 12px 34px rgba(25, 31, 40, 0.08), 0 2px 8px rgba(25, 31, 40, 0.04);
  --shadow-sheet: 0 -18px 48px rgba(25, 31, 40, 0.16);
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --page-gutter: 20px;
  --nav-height: 72px;
  color: var(--color-text);
  background: var(--color-background);
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #e5e8eb;
}

body {
  min-width: 320px;
  min-height: 100dvh;
  margin: 0;
  color: var(--color-text);
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
}

body.is-booting {
  visibility: hidden;
}

body.is-modal-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
.attraction-card__button:focus-visible,
.time-slot:has(input:focus-visible) {
  outline: 3px solid #3182f6;
  outline-offset: 3px;
}

.focus-heading:focus {
  outline: none;
}

.app-shell {
  position: relative;
  width: 100%;
  max-width: 430px;
  min-height: 100dvh;
  margin: 0 auto;
  overflow-x: hidden;
  background: var(--color-background);
}

.app-bar {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: max(10px, env(safe-area-inset-top)) var(--page-gutter) 8px;
  border-bottom: 1px solid rgba(229, 232, 235, 0.82);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(18px);
}

.app-bar__title {
  color: var(--color-text);
  font-size: 15px;
  font-weight: 750;
  line-height: 22px;
  letter-spacing: -0.015em;
}

.app-bar__date {
  color: var(--color-text-tertiary);
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
}

.app-content {
  min-height: calc(100dvh - 62px);
  padding: 30px var(--page-gutter) calc(var(--nav-height) + 42px + env(safe-area-inset-bottom));
}

.screen[hidden] {
  display: none;
}

.page-header {
  margin-bottom: 28px;
}

.page-header--home {
  margin-bottom: 24px;
}

.page-header h1 {
  max-width: 330px;
  margin: 0;
  font-size: 29px;
  font-weight: 780;
  line-height: 38px;
  letter-spacing: -0.035em;
}

.page-header p {
  margin: 9px 0 0;
  color: var(--color-text-secondary);
  font-size: 16px;
  font-weight: 450;
  line-height: 24px;
  letter-spacing: -0.015em;
}

.status-badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--color-text-secondary);
  background: var(--color-surface-weak);
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
}

.status-badge--dark {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.status-badge--reserved {
  color: #8a6800;
  background: #fff8c2;
}

.primary-button,
.weak-button,
.plain-button,
.danger-button {
  min-height: 52px;
  border: 0;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 720;
  line-height: 24px;
  cursor: pointer;
}

.primary-button {
  padding: 14px 18px;
  color: var(--color-text);
  background: var(--color-accent);
}

.primary-button:hover {
  background: #f9df00;
}

.primary-button:active {
  background: var(--color-accent-pressed);
  transform: scale(0.985);
}

.primary-button--yellow {
  color: var(--color-text);
  background: var(--color-accent);
}

.primary-button:disabled {
  color: var(--color-text-tertiary);
  background: var(--color-surface-weak);
  cursor: not-allowed;
  transform: none;
}

.weak-button {
  padding: 14px 18px;
  color: var(--color-text);
  background: var(--color-surface-weak);
}

.weak-button:hover {
  background: #e9ecef;
}

.plain-button {
  padding: 13px 16px;
  color: var(--color-text-secondary);
  background: transparent;
}

.plain-button--danger {
  color: var(--color-danger);
}

.danger-button {
  padding: 14px 18px;
  color: #ffffff;
  background: var(--color-danger);
}

.text-button {
  min-height: 40px;
  padding: 8px 0 8px 12px;
  border: 0;
  color: var(--color-text-secondary);
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  cursor: pointer;
}

.action-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.action-card--dark {
  color: #ffffff;
  background: #191f28;
}

.action-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.action-card__top time {
  color: #d1d6db;
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
}

.action-card h2 {
  margin: 26px 0 0;
  font-size: 25px;
  font-weight: 780;
  line-height: 34px;
  letter-spacing: -0.03em;
}

.action-card p {
  margin: 9px 0 0;
  color: #b0b8c1;
  font-size: 15px;
  line-height: 23px;
}

.action-card .primary-button {
  width: 100%;
  margin-top: 26px;
}

.content-section {
  margin-top: 34px;
}

.content-section--compact {
  margin-top: 30px;
}

.section-heading {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.section-heading h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 760;
  line-height: 29px;
  letter-spacing: -0.025em;
}

.section-heading > span {
  color: var(--color-text-tertiary);
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
}

.schedule-list .schedule-row + .schedule-row {
  border-top: 0;
}

.reservation-rule-copy {
  margin: 10px 0 0;
  color: var(--color-text-secondary);
  font-size: 13px;
  line-height: 20px;
}

.schedule-row,
.empty-action,
.help-row {
  display: flex;
  width: 100%;
  min-height: 86px;
  align-items: center;
  border: 0;
  text-align: left;
}

.help-row {
  cursor: pointer;
}

.schedule-row {
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  background: transparent;
}

.schedule-row time,
.schedule-row__slot {
  flex: 0 0 52px;
  font-size: 17px;
  font-weight: 780;
  line-height: 25px;
}

.schedule-row__copy {
  display: grid;
  min-width: 0;
  flex: 1;
  gap: 2px;
}

.schedule-row__copy strong {
  overflow: hidden;
  font-size: 16px;
  font-weight: 720;
  line-height: 24px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.schedule-row__copy span,
.empty-action span span,
.help-row span span {
  color: var(--color-text-tertiary);
  font-size: 13px;
  line-height: 20px;
}

.schedule-row__floor {
  flex: 0 0 auto;
  color: var(--color-text-secondary);
  font-size: 14px;
  font-weight: 700;
}

.row-action {
  flex: 0 0 auto;
  color: var(--color-text-tertiary);
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
}

.empty-action {
  justify-content: space-between;
  padding: 18px;
  border-radius: var(--radius-lg);
  color: var(--color-text);
  background: var(--color-surface);
  box-shadow: inset 0 0 0 1px var(--color-border);
}

.empty-action > span,
.help-row > span {
  display: grid;
  gap: 3px;
}

.empty-action strong,
.help-row strong {
  font-size: 15px;
  font-weight: 720;
  line-height: 23px;
}

.help-section {
  margin-top: 22px;
}

.help-row {
  justify-content: space-between;
  padding: 18px 2px;
  border-top: 1px solid var(--color-border);
  color: var(--color-text);
  background: transparent;
}

.pass-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.pass-card__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 24px 18px;
}

.pass-card__label,
.reservation-card__label {
  color: var(--color-text-tertiary);
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
}

.pass-card h2,
.reservation-card h2 {
  margin: 5px 0 0;
  font-size: 22px;
  font-weight: 780;
  line-height: 31px;
  letter-spacing: -0.025em;
}

.fact-grid {
  display: grid;
  margin: 0;
}

.fact-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.fact-grid > div {
  min-width: 0;
  padding: 18px 16px;
  border-top: 1px solid var(--color-border);
}

.fact-grid > div + div {
  border-left: 1px solid var(--color-border);
}

.fact-grid dt,
.fact-grid dd {
  margin: 0;
}

.fact-grid dt {
  color: var(--color-text-tertiary);
  font-size: 12px;
  font-weight: 650;
  line-height: 18px;
}

.fact-grid dd {
  margin-top: 5px;
  overflow: hidden;
  font-size: 19px;
  font-weight: 780;
  line-height: 27px;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pass-card__footer {
  padding: 20px 24px 24px;
  border-top: 1px dashed #d1d6db;
}

.pass-card__footer p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 21px;
}

.pass-card__footer .primary-button {
  width: 100%;
  margin-top: 18px;
}

.day-timeline {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.day-timeline__item {
  display: grid;
  grid-template-columns: 48px 20px minmax(0, 1fr);
  gap: 10px;
}

.day-timeline__time {
  padding-top: 22px;
  color: var(--color-text-secondary);
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
}

.day-timeline__rail {
  position: relative;
  display: flex;
  justify-content: center;
}

.day-timeline__rail::after {
  position: absolute;
  top: 31px;
  bottom: -14px;
  width: 2px;
  background: var(--color-border);
  content: "";
}

.day-timeline__item:last-child .day-timeline__rail::after {
  display: none;
}

.day-timeline__rail span {
  position: relative;
  z-index: 1;
  width: 12px;
  height: 12px;
  margin-top: 26px;
  border: 3px solid var(--color-background);
  border-radius: 50%;
  background: #b0b8c1;
  box-shadow: 0 0 0 2px #b0b8c1;
}

.day-timeline__item.is-current .day-timeline__rail span,
.day-timeline__item.is-complete .day-timeline__rail span {
  background: var(--color-text);
  box-shadow: 0 0 0 2px var(--color-text);
}

.timeline-card {
  margin-bottom: 18px;
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
}

.timeline-card--current {
  border-color: transparent;
  box-shadow: var(--shadow-card);
}

.timeline-card__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.timeline-card__heading div > span {
  color: var(--color-text-tertiary);
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

.timeline-card h2 {
  margin: 4px 0 0;
  font-size: 20px;
  font-weight: 780;
  line-height: 28px;
}

.timeline-card__heading > strong {
  padding-top: 20px;
  color: var(--color-text-secondary);
  font-size: 14px;
}

.timeline-card p {
  margin: 12px 0 0;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 22px;
}

.timeline-card .weak-button,
.timeline-card .primary-button {
  width: 100%;
  margin-top: 18px;
}

.reservation-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

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

.booking-guide--reservation-limit {
  margin-top: 16px;
}

.reservation-add-button {
  width: 100%;
  margin-top: 12px;
}

.reservation-card__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 24px 24px 0;
}

.reservation-card__description {
  margin: 9px 24px 22px;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 22px;
}

.reservation-card .fact-grid {
  border-top: 1px solid var(--color-border);
}

.reservation-card .fact-grid > div {
  border-top: 0;
}

.reservation-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 20px 24px 24px;
  border-top: 1px solid var(--color-border);
}

.reservation-actions .plain-button {
  min-width: 72px;
}

.info-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--color-border);
  list-style: none;
}

.info-list li {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  padding: 16px 2px;
  border-bottom: 1px solid var(--color-border);
}

.info-list strong {
  font-size: 15px;
  line-height: 23px;
}

.info-list span {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 22px;
}

.page-header--experience-list {
  margin-bottom: 14px;
}

.page-header--experience-list h1 {
  font-size: 27px;
  line-height: 35px;
}

.page-header--experience-list p {
  margin-top: 6px;
  font-size: 14px;
  line-height: 22px;
}

.page-header--experience-list + .booking-guide {
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
}

.booking-guide {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 18px;
  border: 1px solid #f2df59;
  border-radius: var(--radius-lg);
  background: #fffbea;
}

.booking-guide > div {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.booking-guide strong {
  font-size: 15px;
  font-weight: 750;
  line-height: 23px;
}

.booking-guide > div > span {
  color: var(--color-text-secondary);
  font-size: 13px;
  line-height: 20px;
}

.availability-badge {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  justify-content: center;
  padding: 3px 9px;
  border-radius: 999px;
  color: #715800;
  background: #fff4ad;
  font-size: 12px;
  font-weight: 760;
  line-height: 20px;
  white-space: nowrap;
}

.availability-badge--dark {
  color: #ffffff;
  background: var(--color-text);
}

.availability-badge--reserved {
  color: #17653a;
  background: #dff7e8;
}

.experience-list {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.section-heading--attraction {
  margin-bottom: 0;
}

.section-heading--attraction > span {
  color: var(--color-text-tertiary);
  font-size: 13px;
  font-weight: 650;
  line-height: 20px;
}

.attraction-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-surface);
  box-shadow: 0 8px 24px rgba(25, 31, 40, 0.05);
}

.attraction-card__button {
  display: grid;
  width: 100%;
  gap: 8px;
  padding: 14px 16px 13px;
  border: 0;
  color: var(--color-text);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.attraction-card__button:active {
  background: var(--color-surface-weak);
  transform: scale(0.992);
}

.attraction-card__button:disabled {
  color: var(--color-text-secondary);
  background: var(--color-surface-weak);
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.attraction-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.attraction-card__floor {
  display: inline-flex;
  min-width: 48px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-text);
  background: var(--color-surface-weak);
  font-size: 13px;
  font-weight: 800;
  line-height: 20px;
  white-space: nowrap;
}

.attraction-card__copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.attraction-card__copy strong {
  overflow: hidden;
  font-size: 18px;
  font-weight: 780;
  line-height: 26px;
  letter-spacing: -0.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.attraction-card__copy > span {
  overflow: hidden;
  color: var(--color-text-secondary);
  font-size: 13px;
  line-height: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.attraction-card__facts {
  display: flex;
  min-width: 0;
  align-items: center;
}

.attraction-card__facts > span {
  display: inline-flex;
  min-width: 0;
  align-items: baseline;
  gap: 5px;
  padding-right: 12px;
}

.attraction-card__facts > span + span {
  padding-left: 12px;
  border-left: 1px solid var(--color-border);
}

.attraction-card__facts small {
  color: var(--color-text-tertiary);
  font-size: 12px;
  font-weight: 650;
  line-height: 18px;
}

.attraction-card__facts strong {
  overflow: hidden;
  font-size: 13px;
  font-weight: 740;
  line-height: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.attraction-card__bottomline {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.attraction-card__action {
  margin-left: auto;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 750;
  line-height: 20px;
  white-space: nowrap;
}

.back-button {
  min-height: 44px;
  margin: -12px 0 10px -10px;
  padding: 10px;
  border: 0;
  border-radius: 10px;
  color: var(--color-text-secondary);
  background: transparent;
  font-size: 14px;
  font-weight: 720;
  line-height: 22px;
  cursor: pointer;
}

.back-button:hover {
  background: var(--color-surface-weak);
}

.attraction-detail {
  display: grid;
  gap: 12px;
}

.attraction-detail__hero,
.experience-detail-section,
.time-picker {
  margin: 0;
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
}

.attraction-detail__hero h1 {
  margin: 14px 0 0;
  font-size: 29px;
  font-weight: 790;
  line-height: 38px;
  letter-spacing: -0.035em;
}

.attraction-detail__hero > p {
  margin: 8px 0 0;
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 23px;
}

.attraction-detail__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 22px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--color-border);
}

.attraction-detail__facts > div {
  min-width: 0;
}

.attraction-detail__facts > div + div {
  padding-left: 12px;
  border-left: 1px solid var(--color-border);
}

.attraction-detail__facts dt,
.attraction-detail__facts dd {
  margin: 0;
}

.attraction-detail__facts dt {
  color: var(--color-text-tertiary);
  font-size: 11px;
  font-weight: 650;
  line-height: 17px;
}

.attraction-detail__facts dd {
  margin-top: 4px;
  overflow: hidden;
  font-size: 15px;
  font-weight: 750;
  line-height: 22px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.experience-detail-section h2,
.time-picker h2 {
  margin: 0;
  padding: 0;
  font-size: 20px;
  font-weight: 770;
  line-height: 29px;
  letter-spacing: -0.025em;
}

.experience-detail-section p {
  margin: 10px 0 0;
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 24px;
}

.usage-list {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.usage-list li {
  position: relative;
  padding-left: 15px;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 22px;
}

.usage-list li::before {
  position: absolute;
  top: 9px;
  left: 2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-text-tertiary);
  content: "";
}

.time-picker {
  min-width: 0;
}

.time-picker > p {
  margin: 8px 0 0;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 22px;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.time-slot {
  display: grid;
  min-width: 0;
  min-height: 72px;
  align-content: center;
  gap: 2px;
  padding: 10px 6px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  text-align: center;
  cursor: pointer;
}

.time-slot:has(input:checked) {
  border-color: var(--color-text);
  background: #fffbea;
  box-shadow: inset 0 0 0 1px var(--color-text);
}

.time-slot strong {
  font-size: 16px;
  font-weight: 780;
  line-height: 23px;
}

.time-slot span {
  overflow: hidden;
  color: var(--color-text-secondary);
  font-size: 11px;
  font-weight: 650;
  line-height: 17px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.time-slot.is-disabled {
  color: var(--color-text-tertiary);
  background: var(--color-surface-weak);
  cursor: not-allowed;
}

.time-slot.is-disabled span {
  color: var(--color-text-tertiary);
}

.time-picker .selection-note {
  margin-top: 14px;
  color: var(--color-text-tertiary);
  font-size: 12px;
  line-height: 19px;
}

.reservation-cta {
  margin-top: 18px;
}

.reservation-cta .primary-button {
  width: 100%;
}

.reservation-cta--sticky {
  position: sticky;
  z-index: 10;
  bottom: calc(var(--nav-height) + 8px + env(safe-area-inset-bottom));
  padding: 12px 0 4px;
  background: linear-gradient(to bottom, rgba(247, 248, 250, 0), var(--color-background) 24%);
}

.floor-groups {
  display: grid;
  gap: 12px;
}

.floor-group {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  padding: 22px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
}

.floor-group h2 {
  margin: 0;
  font-size: 21px;
  font-weight: 780;
  line-height: 30px;
  white-space: nowrap;
}

.floor-group__heading {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 5px;
}

.floor-group__icon {
  display: block;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  overflow: visible;
}

.floor-group__label span {
  display: block;
  margin-top: 2px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

.floor-group__content {
  min-width: 0;
}

.floor-group ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin: 1px 0 0;
  padding: 0;
  list-style: none;
}

.floor-group li {
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 24px;
}

.floor-group--dense .floor-group__places {
  display: grid;
  gap: 6px;
}

.floor-group__places li {
  position: relative;
  padding-left: 11px;
}

.floor-group__places li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.floor-group__facilities {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed var(--color-border);
}

.floor-group__facilities strong {
  display: block;
  color: var(--color-text-tertiary);
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

.floor-group__facilities ul {
  gap: 2px 12px;
  margin-top: 3px;
}

.floor-group__facilities li {
  color: var(--color-text-secondary);
  font-size: 13px;
  line-height: 20px;
}

.bottom-nav {
  position: fixed;
  z-index: 30;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  width: 100%;
  max-width: 430px;
  min-height: calc(var(--nav-height) + env(safe-area-inset-bottom));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  padding: 8px 10px max(8px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(229, 232, 235, 0.92);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(18px);
}

.nav-item {
  display: flex;
  min-width: 0;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 0;
  border-radius: var(--radius-sm);
  color: var(--color-text-tertiary);
  background: transparent;
  font-size: 14px;
  font-weight: 680;
  line-height: 21px;
  cursor: pointer;
}

.nav-item.is-selected {
  color: var(--color-text);
  background: #fffbea;
  font-weight: 760;
}

.modal-layer[hidden] {
  display: none;
}

.modal-layer {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 48px;
  background: rgba(25, 31, 40, 0.46);
}

.bottom-sheet {
  width: 100%;
  max-width: 430px;
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  padding: 10px 24px calc(22px + max(0px, env(safe-area-inset-bottom)));
  border-radius: 28px 28px 0 0;
  background: var(--color-surface);
  box-shadow: var(--shadow-sheet);
}

.sheet-handle {
  width: 38px;
  height: 4px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: #d1d6db;
}

.bottom-sheet h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 780;
  line-height: 33px;
  letter-spacing: -0.03em;
}

.sheet-description {
  margin: 10px 0 0;
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 23px;
}

.change-summary {
  margin: 24px 0 0;
  padding: 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.change-summary div {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.change-summary div + div {
  border-top: 1px solid var(--color-border);
}

.change-summary dt,
.change-summary dd {
  margin: 0;
  font-size: 14px;
  line-height: 22px;
}

.change-summary dt {
  color: var(--color-text-tertiary);
}

.change-summary dd {
  color: var(--color-text);
  font-weight: 720;
  text-align: right;
}

.change-summary--time {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.change-summary--time div {
  display: grid;
  min-height: 86px;
  align-content: center;
  justify-content: start;
  gap: 3px;
  padding: 0 18px;
}

.change-summary--time div + div {
  border-top: 0;
  border-left: 1px solid var(--color-border);
}

.change-summary--time dd {
  font-size: 20px;
  line-height: 28px;
  text-align: left;
}

.sheet-actions {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.sheet-actions--split {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.toast {
  position: fixed;
  z-index: 120;
  right: 20px;
  bottom: calc(var(--nav-height) + 22px + env(safe-area-inset-bottom));
  left: 20px;
  width: calc(100% - 40px);
  max-width: 390px;
  margin: 0 auto;
  padding: 14px 17px;
  border-radius: 14px;
  color: #ffffff;
  background: rgba(25, 31, 40, 0.94);
  box-shadow: 0 8px 24px rgba(25, 31, 40, 0.18);
  font-size: 14px;
  font-weight: 650;
  line-height: 21px;
}

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

@media (min-width: 431px) {
  body {
    padding: 24px 0;
    background: #e9ecef;
  }

  .app-shell {
    min-height: calc(100dvh - 48px);
    border-radius: 28px;
    box-shadow: 0 22px 70px rgba(25, 31, 40, 0.16);
  }

  .app-bar {
    border-radius: 28px 28px 0 0;
  }

  .bottom-nav {
    bottom: 24px;
    border-radius: 0 0 28px 28px;
  }

  .modal-layer {
    align-items: center;
    padding: 24px;
  }

  .bottom-sheet {
    border-radius: 28px;
  }
}

@media (max-width: 350px) {
  :root {
    --page-gutter: 16px;
  }

  .page-header h1 {
    font-size: 27px;
    line-height: 36px;
  }

  .action-card,
  .pass-card__heading,
  .pass-card__footer,
  .reservation-card__heading,
  .reservation-actions {
    padding-right: 20px;
    padding-left: 20px;
  }

  .fact-grid dd {
    font-size: 17px;
  }

  .day-timeline__item {
    grid-template-columns: 42px 16px minmax(0, 1fr);
    gap: 7px;
  }

  .attraction-card__button,
  .attraction-detail__hero,
  .experience-detail-section,
  .time-picker {
    padding-right: 18px;
    padding-left: 18px;
  }

  .attraction-detail__facts dd {
    font-size: 14px;
  }

  .sheet-actions--split {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .screen {
    animation: screen-enter 180ms ease-out;
  }

  .primary-button,
  .weak-button,
  .nav-item,
  .schedule-row,
  .help-row,
  .attraction-card__button,
  .time-slot,
  .back-button {
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 120ms ease, box-shadow 160ms ease;
  }

  .bottom-sheet {
    animation: sheet-enter 220ms cubic-bezier(0.22, 1, 0.36, 1);
  }
}

@keyframes screen-enter {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes sheet-enter {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
