@font-face {
  font-family: "Shippori Mincho Local";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("/vendor/shippori-mincho-latin-400.woff2") format("woff2");
  unicode-range: U+0000-02FF;
}

@font-face {
  font-family: "Shippori Mincho Local";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("/vendor/shippori-mincho-japanese-400.woff2") format("woff2");
  unicode-range: U+3000-30FF, U+3400-4DBF, U+4E00-9FFF, U+F900-FAFF, U+FF00-FFEF;
}

:root {
  color-scheme: dark;
  --night: #0b0b14;
  --surface: #12121e;
  --surface-raised: #1a1a28;
  --flame: #ffa94d;
  --flame-deep: #ff7b2e;
  --gold: #c9a35c;
  --text: #ece6d9;
  --muted: #aaa4b6;
  --petal: #e8c0cc;
  --error: #ff7d7d;
  --success: #82c9a0;
  --line: rgba(201, 163, 92, 0.28);
  --mincho: "Shippori Mincho Local", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --gothic: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --shadow-flame: 0 0 34px rgba(255, 123, 46, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--night);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(61, 36, 28, 0.2), transparent 31rem),
    var(--night);
  color: var(--text);
  font-family: var(--gothic);
  font-size: 1rem;
  line-height: 1.85;
  text-rendering: optimizeLegibility;
}

body > :not(.petal-canvas, .skip-link, .toast-region) {
  position: relative;
  z-index: 1;
}

a {
  color: var(--flame);
  text-underline-offset: 0.23em;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid #ffd08a;
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  transform: translateY(-180%);
  border-radius: 0.4rem;
  background: var(--text);
  color: var(--night);
}

.skip-link:focus {
  transform: translateY(0);
}

.petal-canvas {
  position: fixed;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.5rem;
  padding: 0 5vw;
  border-bottom: 1px solid rgba(236, 230, 217, 0.08);
  background: linear-gradient(to bottom, rgba(11, 11, 20, 0.88), transparent);
}

.site-header--solid {
  position: sticky;
  background: rgba(11, 11, 20, 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  color: var(--text);
  font-family: var(--mincho);
  font-size: 1.08rem;
  letter-spacing: 0.18em;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2.2vw, 2rem);
}

.site-nav a {
  color: var(--text);
  font-size: 0.84rem;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--flame);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--flame), var(--flame-deep));
  box-shadow: var(--shadow-flame);
  color: #171018;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 0 42px rgba(255, 123, 46, 0.42);
  filter: brightness(1.05);
}

.button:disabled {
  cursor: not-allowed;
  filter: grayscale(0.65);
  opacity: 0.58;
}

.button--outline {
  border-color: var(--gold);
  background: rgba(18, 18, 30, 0.72);
  box-shadow: none;
  color: var(--text);
}

.button--quiet {
  border-color: rgba(236, 230, 217, 0.25);
  background: transparent;
  box-shadow: none;
  color: var(--text);
}

.button--danger {
  border-color: rgba(255, 107, 107, 0.5);
  background: transparent;
  box-shadow: none;
  color: #ffb1b1;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero {
  min-height: 100svh;
  display: grid;
  overflow: hidden;
  place-items: center;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 11, 20, 0.12), rgba(11, 11, 20, 0.45) 62%, rgba(11, 11, 20, 0.9)),
    linear-gradient(to top, var(--night), transparent 42%),
    url("/assets/hero-candle.png") 38% 50% / cover no-repeat;
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 25%;
  left: 29%;
  width: 4rem;
  height: 6rem;
  border-radius: 50%;
  background: rgba(255, 169, 77, 0.16);
  box-shadow: 0 0 5rem 2rem rgba(255, 123, 46, 0.18);
  content: "";
  filter: blur(12px);
  animation: flame-breathe 3.8s ease-in-out infinite alternate;
}

@keyframes flame-breathe {
  from { opacity: 0.5; transform: scale(0.9) translateY(2px); }
  to { opacity: 0.86; transform: scale(1.08) translateY(-2px); }
}

.hero__content {
  display: grid;
  width: min(88vw, 68rem);
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
  padding-top: 5rem;
}

.hero__copy {
  max-width: 33rem;
  justify-self: end;
}

.hero__title {
  margin: 0;
  color: var(--text);
  font-family: var(--mincho);
  font-size: clamp(4.4rem, 11vw, 9rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1;
  text-shadow: 0 0 28px rgba(255, 169, 77, 0.16);
  writing-mode: vertical-rl;
}

.hero__lead {
  margin: 0 0 1.4rem;
  font-family: var(--mincho);
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.65;
}

.hero__meta {
  margin: 0 0 1.8rem;
  color: var(--muted);
}

.section {
  padding: clamp(5.2rem, 11vw, 9rem) max(5vw, 1.25rem);
}

.section.reveal-pending {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.section.reveal-pending.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.section--surface {
  border-block: 1px solid rgba(201, 163, 92, 0.1);
  background:
    linear-gradient(135deg, rgba(201, 163, 92, 0.035), transparent 40%),
    rgba(18, 18, 30, 0.68);
}

.section__inner {
  width: min(100%, 68rem);
  margin: 0 auto;
}

.section__heading {
  margin: 0 0 2.4rem;
  font-family: var(--mincho);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.35;
}

.section__heading::after {
  display: block;
  width: 3.5rem;
  height: 1px;
  margin-top: 1rem;
  background: linear-gradient(90deg, var(--gold), transparent);
  content: "";
}

.synopsis {
  max-width: 43rem;
  margin: 0 auto;
  font-family: var(--mincho);
  font-size: clamp(1.08rem, 2.4vw, 1.32rem);
  line-height: 2.2;
}

.synopsis__last {
  margin-top: 2.2rem;
  color: #ffd59b;
  font-size: 1.15em;
  letter-spacing: 0.12em;
}

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

.character-card {
  min-height: 14rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background:
    radial-gradient(circle at 50% 25%, rgba(255, 169, 77, 0.08), transparent 35%),
    rgba(18, 18, 30, 0.86);
}

.character-card__portrait {
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 1.1rem;
  place-items: center;
  border: 1px solid rgba(201, 163, 92, 0.3);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--mincho);
  font-size: 1.5rem;
}

.character-card h3 {
  margin: 0;
  font-family: var(--mincho);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.character-card p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.info-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: 3rem;
}

.performance-list {
  display: grid;
  gap: 0.8rem;
}

.performance-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  min-height: 6.2rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: var(--surface);
}

.performance-card[aria-disabled="true"] {
  filter: grayscale(0.8);
  opacity: 0.55;
}

.performance-card h3,
.performance-card p {
  margin: 0;
}

.performance-card h3 {
  font-family: var(--mincho);
  font-weight: 400;
}

.performance-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.availability {
  color: #ffc477;
  font-size: 0.82rem;
  font-weight: 700;
}

.availability--sold {
  color: var(--muted);
}

.info-panel {
  padding: 1.5rem;
  border-left: 1px solid var(--gold);
  background: rgba(26, 26, 40, 0.55);
}

.info-panel dl {
  margin: 0;
}

.info-panel dt {
  margin-top: 1.15rem;
  color: var(--gold);
  font-size: 0.77rem;
  letter-spacing: 0.15em;
}

.info-panel dt:first-child {
  margin-top: 0;
}

.info-panel dd {
  margin: 0.15rem 0 0;
}

.cta-section {
  text-align: center;
}

.cta-section .section__heading::after {
  margin-inline: auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.site-footer {
  padding: 3.5rem max(5vw, 1.25rem);
  border-top: 1px solid var(--line);
  background: #08080f;
  color: var(--muted);
  font-size: 0.85rem;
}

.site-footer__inner {
  display: grid;
  width: min(100%, 68rem);
  margin: 0 auto;
  grid-template-columns: 1fr auto;
  gap: 2rem;
}

.site-footer p {
  margin: 0.3rem 0;
}

/* Reservation flow */
.flow-main {
  min-height: calc(100svh - 4.5rem);
  padding: clamp(2rem, 5vw, 4rem) max(4vw, 1rem) 7rem;
}

.flow-shell {
  width: min(100%, 62rem);
  margin: 0 auto;
}

.flow-title {
  margin: 0 0 0.7rem;
  font-family: var(--mincho);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.flow-intro {
  margin: 0 0 2rem;
  color: var(--muted);
}

.stepper {
  display: grid;
  margin: 0 0 2rem;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.stepper li {
  position: relative;
  padding-top: 2.1rem;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.stepper li::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  transform: translateX(-50%);
  border: 1px solid #5d5869;
  border-radius: 50%;
  background: var(--night);
  content: attr(data-step);
}

.stepper li:not(:last-child)::after {
  position: absolute;
  top: 0.85rem;
  left: 50%;
  width: 100%;
  height: 1px;
  background: #3b3746;
  content: "";
}

.stepper li.is-active,
.stepper li.is-done {
  color: var(--text);
}

.stepper li.is-active::before,
.stepper li.is-done::before {
  border-color: var(--flame);
  background: var(--flame-deep);
  box-shadow: 0 0 1rem rgba(255, 123, 46, 0.38);
  color: #130d11;
}

.step-panel {
  padding: clamp(1.25rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(18, 18, 30, 0.9);
  box-shadow: 0 1.2rem 4rem rgba(0, 0, 0, 0.22);
}

.step-panel h2 {
  margin: 0 0 1.3rem;
  font-family: var(--mincho);
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: 400;
}

.choice-list {
  display: grid;
  gap: 0.8rem;
}

.choice-card {
  display: grid;
  width: 100%;
  min-height: 5.5rem;
  padding: 1rem 1.15rem;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: var(--surface-raised);
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.choice-card:hover:not(:disabled) {
  border-color: var(--flame);
}

.choice-card:disabled {
  cursor: not-allowed;
  filter: grayscale(0.8);
  opacity: 0.5;
}

.choice-card strong,
.choice-card span {
  display: block;
}

.choice-card span {
  color: var(--muted);
  font-size: 0.87rem;
}

.seat-map-frame {
  overflow-x: auto;
  margin: 1rem 0;
  padding: 0.75rem;
  border: 1px solid rgba(201, 163, 92, 0.18);
  border-radius: 0.7rem;
  background: #0d0d17;
}

.seat-map {
  display: block;
  width: 100%;
  min-width: 330px;
  height: auto;
  overflow: visible;
}

.seat-stage path {
  fill: rgba(201, 163, 92, 0.12);
  stroke: var(--gold);
  stroke-width: 0.35;
}

.seat-stage text {
  fill: var(--muted);
  font-family: var(--gothic);
  font-size: 3.3px;
  letter-spacing: 0.15em;
}

.seat {
  cursor: pointer;
  transition: opacity 160ms ease;
}

.seat-hitbox {
  fill: transparent;
}

.seat-candle {
  fill: rgba(236, 230, 217, 0.04);
  stroke: #8f899a;
  stroke-width: 0.45;
}

.seat-wick {
  fill: none;
  stroke: #8f899a;
  stroke-linecap: round;
  stroke-width: 0.55;
}

.seat-flame {
  fill: transparent;
}

.seat-label {
  fill: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 2.5px;
  pointer-events: none;
}

.seat--selected .seat-candle {
  fill: rgba(255, 169, 77, 0.45);
  stroke: var(--flame);
}

.seat--selected .seat-wick {
  stroke: #ffd39a;
}

.seat--selected .seat-flame {
  fill: var(--flame);
  filter: drop-shadow(0 0 2px var(--flame-deep));
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: seat-light 300ms ease-out;
}

.seat--selected .seat-label {
  fill: #ffd9a7;
}

.seat--reserved,
.seat--blocked {
  cursor: not-allowed;
  opacity: 0.18;
}

.seat--reserved .seat-candle,
.seat--blocked .seat-candle {
  fill: #06060b;
  stroke: #3d3946;
}

@keyframes seat-light {
  from { opacity: 0; transform: scale(0.3) translateY(2px); }
  to { opacity: 1; transform: scale(1); }
}

.seat-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.2rem;
  margin: 0.8rem 0 1.2rem;
  padding: 0;
  color: var(--muted);
  font-size: 0.82rem;
  list-style: none;
}

.legend-mark {
  display: inline-block;
  width: 0.8rem;
  height: 1rem;
  margin-right: 0.35rem;
  border: 1px solid #8f899a;
  border-radius: 0.15rem;
  vertical-align: -0.18rem;
}

.legend-mark--lit {
  border-color: var(--flame);
  background: var(--flame);
  box-shadow: 0 -0.5rem 0.8rem rgba(255, 123, 46, 0.48);
}

.legend-mark--dark {
  border-color: #3d3946;
  background: #08080d;
  opacity: 0.55;
}

.flow-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.selection-summary {
  position: sticky;
  z-index: 5;
  bottom: 0.75rem;
  display: flex;
  min-height: 4.5rem;
  margin: 1rem 0 0;
  padding: 0.75rem 1rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--gold);
  border-radius: 0.75rem;
  background: rgba(11, 11, 20, 0.96);
  box-shadow: 0 0.7rem 2rem rgba(0, 0, 0, 0.42);
}

.selection-summary p {
  margin: 0;
}

.selection-summary strong {
  color: #ffd49b;
}

.field {
  margin-bottom: 1.25rem;
}

.field label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.field input,
.field select {
  width: 100%;
  min-height: 50px;
  padding: 0.7rem 0.85rem;
  border: 1px solid #5c5668;
  border-radius: 0.45rem;
  background: #0d0d16;
  color: var(--text);
}

.field input:focus {
  border-color: var(--flame);
}

.field-error {
  min-height: 1.4em;
  margin: 0.25rem 0 0;
  color: var(--error);
  font-size: 0.85rem;
}

.notice {
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--gold);
  background: rgba(201, 163, 92, 0.08);
  color: #d7d0c3;
  font-size: 0.9rem;
}

.review-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.review-list > div {
  display: grid;
  padding: 0.75rem 0;
  grid-template-columns: 8rem 1fr;
  border-bottom: 1px solid rgba(236, 230, 217, 0.1);
}

.review-list dt {
  color: var(--muted);
}

.review-list dd {
  margin: 0;
}

.completion {
  text-align: center;
}

.completion__flames {
  display: flex;
  min-height: 5rem;
  justify-content: center;
  gap: 1.4rem;
  margin-bottom: 1rem;
}

.mini-flame {
  width: 1.3rem;
  height: 2.4rem;
  align-self: end;
  border-radius: 70% 30% 60% 40%;
  background: linear-gradient(#fff6d5, var(--flame) 45%, var(--flame-deep));
  box-shadow: 0 0 2rem rgba(255, 123, 46, 0.65);
  transform: rotate(4deg);
  animation: mini-flame 1.8s ease-in-out infinite alternate;
}

@keyframes mini-flame {
  to { transform: rotate(-4deg) scale(0.92, 1.06); }
}

.reservation-code {
  margin: 1rem 0;
  color: #ffe0b5;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: clamp(1.8rem, 8vw, 3.7rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.qr-canvas {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1rem auto;
  border: 0.6rem solid #fff;
  border-radius: 0.25rem;
  background: #fff;
}

.loading,
.empty-state {
  padding: 2rem;
  color: var(--muted);
  text-align: center;
}

/* My reservation has high contrast for lobby use */
.my-page {
  min-height: 100svh;
  background: #f2eee4;
  color: #171721;
}

.my-page .site-header--solid {
  border-color: #d5c9b2;
  background: rgba(242, 238, 228, 0.96);
}

.my-page .brand,
.my-page .site-nav a {
  color: #171721;
}

.my-page a {
  color: #8b4717;
}

.my-page .flow-main {
  background: radial-gradient(circle at top, #fffaf0, #eee8dc 75%);
}

.my-page .flow-intro {
  color: #4d4855;
}

.my-page .step-panel {
  border-color: #cdbf9f;
  background: #fffdf8;
  box-shadow: 0 1rem 3rem rgba(53, 42, 24, 0.12);
}

.my-page .field input {
  border-color: #776e80;
  background: #fff;
  color: #171721;
}

.my-page .notice {
  background: #f7edda;
  color: #352e25;
}

.my-page .review-list > div {
  border-color: #ded5c7;
}

.my-page .review-list dt,
.my-page .loading {
  color: #514b58;
}

.status-badge {
  display: inline-flex;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: #dfeee3;
  color: #164c2a;
  font-weight: 800;
}

.status-badge--paid {
  background: #dce8f8;
  color: #173e70;
}

.status-badge--cancelled {
  background: #e4e0e2;
  color: #544b51;
}

.contact-box {
  margin-top: 1rem;
  padding: 1rem;
  border: 2px solid #a35a2a;
  border-radius: 0.5rem;
  background: #fff7e8;
}

.toast-region {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: min(26rem, calc(100vw - 2rem));
  gap: 0.5rem;
}

.toast {
  padding: 0.85rem 1rem;
  border: 1px solid var(--gold);
  border-radius: 0.5rem;
  background: #1d1920;
  box-shadow: 0 0.7rem 2.5rem rgba(0, 0, 0, 0.42);
  color: var(--text);
}

.toast--error {
  border-color: var(--error);
}

@media (max-width: 760px) {
  .site-header {
    min-height: 4rem;
    padding-inline: 1rem;
  }

  .site-nav a:not(.button) {
    display: none;
  }

  .site-nav .button {
    min-height: 42px;
    padding: 0.6rem 0.9rem;
    font-size: 0.78rem;
  }

  .hero::before {
    background:
      linear-gradient(to top, var(--night) 3%, transparent 55%),
      linear-gradient(90deg, rgba(11, 11, 20, 0.05), rgba(11, 11, 20, 0.7)),
      url("/assets/hero-candle.png") 39% 50% / cover no-repeat;
  }

  .hero__content {
    width: calc(100% - 2rem);
    min-height: 100svh;
    padding: 5.4rem 0 3rem;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 1.2rem;
  }

  .hero__copy {
    padding-bottom: 1rem;
  }

  .hero__lead {
    font-size: 1.16rem;
  }

  .hero__title {
    align-self: center;
    font-size: clamp(4.2rem, 24vw, 6rem);
  }

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

  .info-layout,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .info-layout {
    gap: 1.5rem;
  }

  .review-list > div {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .selection-summary {
    align-items: stretch;
    flex-direction: column;
  }

  .selection-summary .button {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .character-grid {
    grid-template-columns: 1fr;
  }

  .character-card {
    min-height: auto;
  }

  .performance-card,
  .choice-card {
    grid-template-columns: 1fr;
  }

  .stepper li {
    font-size: 0.7rem;
  }

  .flow-actions .button {
    flex: 1 1 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
