:root {
  color-scheme: dark;
  --night: #140c14;
  --wine: #3a1424;
  --gold: #e4b56a;
  --paper: #f6ead6;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  background:
    radial-gradient(circle at 18% 12%, #4a1d2c 0%, transparent 34%),
    linear-gradient(160deg, #1a0d14, var(--night) 55%, #241018);
  color: var(--paper);
  font-family: "Iowan Old Style", Palatino, Georgia, serif;
}

.room {
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

#disc {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: block;
  cursor: grab;
}

#disc:active { cursor: grabbing; }

.sheet {
  padding: clamp(24px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, rgba(20, 8, 14, 0.2), rgba(20, 8, 14, 0.55));
}

.kicker {
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(36px, 6vw, 62px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  font-weight: 500;
}

.lead, ol, .status {
  margin-top: 16px;
  color: rgba(246, 234, 214, 0.78);
  line-height: 1.5;
}

ol { padding-left: 18px; }
li + li { margin-top: 6px; }

button {
  margin-top: 22px;
  align-self: start;
  border: 0;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--gold);
  color: #2a140c;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.status { min-height: 1.4em; color: var(--gold); }

@media (max-width: 840px) {
  .room { grid-template-columns: 1fr; }
  #disc { height: 58vh; }
  .sheet { padding: 22px 20px 32px; }
}
