.tarot-spread,
.tarot-spread * { box-sizing: border-box; }

.tarot-spread {
  --spread-gold: #dbb969;
  --spread-muted: #b5a9c7;
  --spread-card-max: 170px;
  min-width: 0;
  margin: 8px 0 28px;
  color: #f3effa;
}

.tarot-spread-heading { margin: 0 0 5px; font-size: 17px; line-height: 1.5; letter-spacing: -.4px; }
.tarot-spread-help { margin: 0 0 19px; font-size: 12px; line-height: 1.7; color: var(--spread-muted); }
.tarot-spread-stage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  width: min(100%, 550px);
  margin: 0 auto;
  padding: 7px 0 3px;
  list-style: none;
  perspective: 1100px;
}
.tarot-spread-item {
  min-width: 0;
  margin: 0;
  padding: 0;
  text-align: center;
  animation: tarot-spread-reveal 540ms cubic-bezier(.18,.7,.2,1) var(--reveal-delay, 0ms) both;
}
.tarot-spread-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  max-width: var(--spread-card-max);
  min-width: 44px;
  min-height: 44px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.tarot-spread-position {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  min-height: 30px;
  color: var(--spread-muted);
  font-size: 12px;
  line-height: 1.45;
}
.tarot-spread-number {
  display: inline-grid;
  place-items: center;
  flex: 0 0 21px;
  width: 21px;
  height: 21px;
  border: 1px solid #67563f;
  border-radius: 50%;
  color: var(--spread-gold);
  font-size: 10px;
}
.tarot-spread-label { min-width: 0; overflow-wrap: anywhere; word-break: keep-all; }
.tarot-spread-face {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 3 / 5;
  padding: 3px;
  border: 1px solid #806e52;
  border-radius: 8px;
  background: #e9dec0;
  box-shadow: 0 8px 19px #0005;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.tarot-spread-image { display: block; width: 100%; height: 100%; min-width: 0; min-height: 0; object-fit: contain; border-radius: 4px; }
.tarot-spread-face.is-reversed .tarot-spread-image { transform: rotate(180deg); }
.tarot-spread-name { display: block; min-height: 20px; color: #e4dbea; font-size: 12px; line-height: 1.5; overflow-wrap: anywhere; word-break: keep-all; }
.tarot-spread-reversed { display: block; margin-top: 2px; color: #e5aecb; font-size: 10px; }
.tarot-spread-card.is-active .tarot-spread-position { color: var(--spread-gold); }
.tarot-spread-card.is-active .tarot-spread-face { border-color: var(--spread-gold); box-shadow: 0 0 0 2px #dbb969aa, 0 10px 24px #0006; }
.tarot-spread-card:focus-visible { outline: 2px solid var(--spread-gold); outline-offset: 5px; }
.tarot-spread-face.has-fallback { background: repeating-linear-gradient(45deg,#241e3b,#241e3b 8px,#2e2548 8px,#2e2548 16px); }
.tarot-spread-fallback { display: grid; gap: 10px; padding: 8px; color: #e7cb89; font-size: 12px; line-height: 1.5; overflow-wrap: anywhere; }
.tarot-spread-fallback-star { font-size: 30px; line-height: 1; }
.tarot-spread-empty { margin: 0; color: var(--spread-muted); font-size: 13px; }

.tarot-spread--quick .tarot-spread-stage { grid-template-columns: minmax(0, 1fr); }
.tarot-spread--quick .tarot-spread-card { width: clamp(130px, 30vw, 170px); max-width: 100%; }
.tarot-spread--relationship .tarot-spread-item:nth-child(1) { grid-column: 1; grid-row: 1; }
.tarot-spread--relationship .tarot-spread-item:nth-child(2) { grid-column: 3; grid-row: 1; }
.tarot-spread--relationship .tarot-spread-item:nth-child(3) { grid-column: 2; grid-row: 1; padding-top: 58px; }
.tarot-spread--choice { --spread-card-max: 150px; }
.tarot-spread--choice .tarot-spread-stage { width: min(100%, 500px); row-gap: 20px; }
.tarot-spread--choice .tarot-spread-item:nth-child(1) { grid-column: 1; grid-row: 1; }
.tarot-spread--choice .tarot-spread-item:nth-child(2) { grid-column: 1; grid-row: 2; }
.tarot-spread--choice .tarot-spread-item:nth-child(3) { grid-column: 3; grid-row: 1; }
.tarot-spread--choice .tarot-spread-item:nth-child(4) { grid-column: 3; grid-row: 2; }
.tarot-spread--choice .tarot-spread-item:nth-child(5) { grid-column: 2; grid-row: 2; }
.tarot-spread--grid { --spread-card-max: 140px; }
.tarot-spread--grid .tarot-spread-stage { width: 100%; grid-template-columns: repeat(auto-fit, minmax(min(100%, 100px), 1fr)); gap: 18px 12px; }

/* Larger readings keep every face visible and group positions by meaning. */
.tarot-spread-groups { display: grid; gap: 23px; min-width: 0; }
.tarot-spread-group { min-width: 0; padding: 17px 15px 14px; border: 1px solid #58496180; border-radius: 14px; background: #1a142380; }
.tarot-spread-group-title { margin: 0 0 12px; color: var(--spread-gold); font-size: 12px; font-weight: 600; line-height: 1.6; text-align: center; }
.tarot-spread--choice-quick .tarot-spread-item:nth-child(3) { padding-top: 40px; }
.tarot-spread--overview .tarot-spread-stage { width: min(100%, 570px); grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 19px; }
.tarot-spread--overview .tarot-spread-item:nth-child(1) { grid-area: 1 / 1; }
.tarot-spread--overview .tarot-spread-item:nth-child(2) { grid-area: 2 / 1; }
.tarot-spread--overview .tarot-spread-item:nth-child(3) { grid-area: 3 / 1; }
.tarot-spread--overview .tarot-spread-item:nth-child(4) { grid-area: 3 / 2; }
.tarot-spread--overview .tarot-spread-item:nth-child(5) { grid-area: 3 / 3; }
.tarot-spread--overview .tarot-spread-item:nth-child(6) { grid-area: 2 / 3; }
.tarot-spread--overview .tarot-spread-item:nth-child(7) { grid-area: 1 / 3; }
.tarot-spread--relationship-deep .tarot-spread-stage { width: min(100%, 370px); grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tarot-spread--relationship-deep [data-group="together"] .tarot-spread-stage { width: min(100%, 550px); grid-template-columns: repeat(3, minmax(0, 1fr)); }
.tarot-spread--celtic { --spread-card-max: 155px; }
.tarot-spread--celtic .tarot-spread-stage { width: min(100%, 540px); grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 24px; }
.tarot-spread--celtic [data-group="perspective"] .tarot-spread-stage { width: 100%; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 15px; }
.tarot-spread--year { --spread-card-max: 150px; }
.tarot-spread--year .tarot-spread-stage { width: min(100%, 535px); grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 24px; }
.tarot-spread--year [data-group="theme"] { border-color: #dbb96980; background: radial-gradient(ellipse at 50% 40%, #59403277, #241b2d); }
.tarot-spread--year [data-group="theme"] .tarot-spread-stage { width: min(100%, 170px); grid-template-columns: minmax(0, 1fr); }
.tarot-spread--year [data-group="theme"] .tarot-spread-card { --spread-card-max: 170px; }

@keyframes tarot-spread-reveal {
  from { opacity: 0; transform: translateY(14px) rotateY(-18deg) rotateX(8deg) scale(.96); }
  to { opacity: 1; transform: translateY(0) rotateY(0) rotateX(0) scale(1); }
}
@media (hover: hover) and (pointer: fine) {
  .tarot-spread-card:hover .tarot-spread-face { transform: translateY(-4px) rotateX(2deg); box-shadow: 0 13px 26px #0007; }
  .tarot-spread-card.is-active:hover .tarot-spread-face { box-shadow: 0 0 0 2px #dbb969aa, 0 13px 26px #0007; }
}
@media (max-width: 560px) {
  .tarot-spread { margin-bottom: 24px; }
  .tarot-spread-heading { font-size: 16px; }
  .tarot-spread-help { font-size: 11px; margin-bottom: 13px; }
  .tarot-spread-stage { gap: 11px; }
  .tarot-spread-card { gap: 7px; }
  .tarot-spread-position { font-size: 11px; gap: 4px; }
  .tarot-spread-number { width: 18px; height: 18px; flex-basis: 18px; font-size: 9px; }
  .tarot-spread-name { font-size: 11px; }
  .tarot-spread-face { padding: 2px; border-radius: 6px; }
  .tarot-spread-image { border-radius: 3px; }
  .tarot-spread--relationship .tarot-spread-item:nth-child(2) { grid-column: 2; }
  .tarot-spread--relationship .tarot-spread-item:nth-child(3) { grid-column: 3; padding-top: 0; }
  .tarot-spread--choice .tarot-spread-stage { row-gap: 15px; }
  .tarot-spread--choice-quick .tarot-spread-item:nth-child(3) { padding-top: 0; }
  .tarot-spread-groups { gap: 17px; }
  .tarot-spread-group { padding: 13px 10px 12px; }
  .tarot-spread-group-title { margin-bottom: 9px; font-size: 12px; }
  .tarot-spread--overview .tarot-spread-stage,
  .tarot-spread--relationship-deep [data-group="together"] .tarot-spread-stage,
  .tarot-spread--celtic .tarot-spread-stage,
  .tarot-spread--celtic [data-group="perspective"] .tarot-spread-stage,
  .tarot-spread--year .tarot-spread-stage { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 14px; }
  .tarot-spread--overview .tarot-spread-item:nth-child(n) { grid-area: auto; }
  .tarot-spread--overview .tarot-spread-item:last-child,
  .tarot-spread--relationship-deep [data-group="together"] .tarot-spread-item:last-child { grid-column: 1 / -1; }
  .tarot-spread--overview .tarot-spread-item:last-child .tarot-spread-card,
  .tarot-spread--relationship-deep [data-group="together"] .tarot-spread-item:last-child .tarot-spread-card { width: calc((100% - 14px) / 2); }
  .tarot-spread--year [data-group="theme"] .tarot-spread-stage { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 350px) {
  .tarot-spread-stage { column-gap: 9px; }
  .tarot-spread-position { gap: 3px; }
  .tarot-spread--grid .tarot-spread-stage { column-gap: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .tarot-spread-item { animation: none; }
  .tarot-spread-face { transition: none; }
  .tarot-spread-card:hover .tarot-spread-face { transform: none; }
}
