:root {
  --ink: #1a1712;
  --ink-soft: #5a5346;
  --paper: #f4efe2;
  --paper-bright: #faf6ec;
  --rule: #d7cdb6;
  --accent: #1a1712;
  --good: #2e6b34;
  --stamp: #9b2226; /* rubber-stamp red for the reveal date */
  --blackletter: "UnifrakturMaguntia", "Times New Roman", serif;
  --display: "Playfair Display", Georgia, "Times New Roman", serif;
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --paper-grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: var(--serif);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---- top masthead bar ---- */
.masthead {
  border-bottom: 2px solid var(--ink);
  background: rgba(244, 239, 226, 0.92);
  backdrop-filter: blur(4px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.masthead-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.wordmark {
  font-family: var(--blackletter);
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: 0;
  color: var(--ink);
  text-decoration: none;
}
.scoreboard { display: flex; gap: 0.5rem; align-items: center; font-family: var(--sans); }
.scoreboard[hidden] { display: none; } /* let the `hidden` attr win over display:flex */
.round-pill, .score-pill {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  white-space: nowrap;
}
.score-pill strong { color: var(--ink); font-family: var(--display); }

/* ---- layout ---- */
main { max-width: 680px; margin: 0 auto; padding: 1.25rem 1rem 3rem; }
.screen { animation: fade 0.3s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ======================================================================
   HOME SCREEN
   ====================================================================== */
.home { text-align: center; }
.home-nameplate { margin: 0.5rem 0 1rem; }
.home-rule { height: 2px; background: var(--ink); }
/* Double keel-line under the folio, like a real front page. */
.home-rule--double {
  height: 4px;
  background: none;
  border-top: 1px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.home-title {
  font-family: var(--blackletter);
  font-weight: 400;
  font-size: clamp(3rem, 14vw, 5.5rem);
  line-height: 1;
  margin: 0.4rem 0 0.3rem;
}
/* Folio line: edition ear on the left, standing head in the middle, date on
   the right — the classic newspaper strip beneath the nameplate. */
.fp-folio {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
  font-family: var(--sans);
  text-transform: uppercase;
  font-size: clamp(0.56rem, 2.4vw, 0.7rem);
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  padding: 0.35rem 0.1rem 0.45rem;
}
.fp-folio-side { flex: 1 1 0; white-space: nowrap; text-align: left; }
.fp-folio-date { text-align: right; }
.fp-folio-mid {
  flex: 0 1 auto;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
@media (max-width: 560px) {
  /* Below tablet width three nowrap items overrun the strip; the standing
     head drops out, leaving the edition ear and the date like a real masthead. */
  .fp-folio-mid { display: none; }
}
/* Lead headline — the hook, set like a front-page banner. */
.fp-headline {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.55rem, 6.4vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.005em;
  margin: 1.1rem auto 0.2rem;
  max-width: 18ch;
}
.howto {
  list-style: none;
  margin: 0 auto 1.6rem;
  padding: 0;
  max-width: 32rem;
  text-align: left;
}
.howto li {
  display: flex;
  gap: 0.8rem;
  align-items: baseline;
  padding: 0.55rem 0;
  font-size: 1.02rem;
}
.howto-n {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--stamp);
  min-width: 1.4rem;
  text-align: center;
}
/* Front-page columns: the three steps set as newspaper copy, ruled off top
   and bottom, split into three columns on wider screens. */
.fp-story {
  max-width: 34rem;
  margin: 1.5rem auto 1.7rem;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.fp-story li {
  display: block;
  padding: 0.9rem 0;
  border-top: 1px dotted var(--rule);
  font-size: 0.98rem;
  line-height: 1.45;
}
.fp-story li:first-child { border-top: none; }
.fp-story .howto-n {
  float: left;
  font-size: 2.5rem;
  line-height: 0.72;
  min-width: 0;
  margin: 0.12rem 0.5rem 0 0;
}
@media (min-width: 620px) {
  .fp-story {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .fp-story li {
    border-top: none;
    border-left: 1px solid var(--rule);
    padding: 1rem 1.1rem;
  }
  .fp-story li:first-child { border-left: none; padding-left: 0.2rem; }
  .fp-story li:last-child { padding-right: 0.2rem; }
}
.editors-note {
  max-width: 32rem;
  margin: 1.4rem auto 0;
  text-align: center;
}
.editors-note summary {
  cursor: pointer;
  list-style: none;
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0.3rem 0.4rem;
}
.editors-note summary::-webkit-details-marker { display: none; }
.editors-note p {
  text-align: left;
  margin: 0.6rem 0 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.editors-note .signoff { font-style: italic; font-family: var(--display); }
.home .primary { max-width: 32rem; margin-inline: auto; }

/* ======================================================================
   HOME — poster wall of iconic front pages
   ====================================================================== */
.home.poster {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: var(--paper);
  background-image: var(--paper-grain);
  animation: none;
}
.fronts { position: absolute; inset: 0; z-index: 1; }
.front {
  position: absolute;
  transform: rotate(var(--rot));
  filter: grayscale(1) contrast(1.06) sepia(0.14) brightness(1.03);
  box-shadow: 0 8px 22px rgba(30, 25, 15, 0.20);
  border: 1px solid rgba(0, 0, 0, 0.08);
  opacity: 0.92;
  will-change: transform;
  user-select: none;
  -webkit-user-drag: none;
}
/* dot-screen grain over the whole wall, matching the card halftone */
.fronts::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(20, 15, 8, 0.5) 0.5px, transparent 0.9px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
  opacity: 0.12;
  pointer-events: none;
}
.poster-topbar {
  position: absolute; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 1.1rem;
  z-index: 5;
}
.poster-logo img { height: 34px; width: auto; display: block; }
.poster-players {
  font-family: var(--sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.poster-hero {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.6rem;
  z-index: 4;
  padding: 1.5rem;
  text-align: center;
  pointer-events: none;   /* cursor passes through to move the fronts */
}
.poster-hero > * { pointer-events: auto; }
.poster-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 62% 46% at center,
              rgba(244, 239, 226, 0.85) 0%, rgba(244, 239, 226, 0.35) 45%, transparent 72%);
  z-index: -1;
  pointer-events: none;
}
.poster .home-title {
  font-size: clamp(3rem, 12.65vw, 5.75rem);
  margin: 0;
}
/* Rendered wordmark logo — guarantees the blackletter even if the web font
   fails to load. Scales like the text title it replaces. */
.home-logo {
  display: block;
  width: min(82vw, 520px);
  height: auto;
  margin: 0 auto;
}
.poster .primary {
  width: auto;
  margin: 0;
  font-size: 1.2rem;
  padding: 1.04rem 2.18rem;
}
.how-to-link {
  font-family: var(--sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  background: none;
  border: none;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 0.3rem;
}

/* ---- how-to-play screen ---- */
.howto-page { max-width: 34rem; margin: 0 auto; padding-top: 1.5rem; text-align: center; }
.howto-title { font-family: var(--display); font-weight: 900; font-size: 2rem; margin: 0 0 1.3rem; }
.howto-page .howto { margin-bottom: 1.3rem; }
.howto-note { font-family: var(--display); font-style: italic; color: var(--ink-soft); margin: 0 0 1.6rem; }
.howto-actions { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.howto-actions .primary { width: 100%; max-width: 22rem; margin: 0; }

/* ======================================================================
   PLAY SCREEN — the newspaper front page IS the visual
   ====================================================================== */
.prompt {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin: 0 0 0.85rem;
  text-align: center;
}
.newspaper {
  --paper-ink: #1a1712;
  --paper-bg: #f1e9d4;
  --paper-rule: #c4b691;
  background: var(--paper-grain), var(--paper-bg);
  color: var(--paper-ink);
  border: 1px solid var(--paper-rule);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 8px 24px rgba(40,33,20,0.13);
  padding: 1.2rem 1.25rem 1.4rem;
  margin-bottom: 1.4rem;
  position: relative;
}
.paper-masthead {
  text-align: center;
  border-bottom: 3px double var(--paper-ink);
  padding-bottom: 0.4rem;
  margin-bottom: 0.9rem;
}
.paper-name {
  font-family: var(--blackletter);
  font-weight: 400;
  font-size: clamp(2.2rem, 9vw, 3.4rem);
  line-height: 1;
  display: block;
}
.paper-dateline {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.4rem;
  font-family: var(--sans);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8a7d5f;
}
.redacted { color: #3a342a; letter-spacing: -0.08em; }

.lead {
  text-align: center;
  border-bottom: 1px solid var(--paper-rule);
  padding-bottom: 0.9rem;
  margin-bottom: 0.9rem;
}
.lead h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.5rem, 6vw, 2.1rem);
  line-height: 1.06;
  margin: 0 0 0.55rem;
}
.lead p {
  text-align: left;
  font-size: 0.99rem;
  color: #322c21;
  margin: 0;
}
.lead p::first-letter {
  font-family: var(--display);
  font-weight: 900;
  font-size: 3.1rem;
  line-height: 0.8;
  float: left;
  padding: 0.05em 0.12em 0 0;
  color: var(--paper-ink);
}

.paper-columns { display: grid; grid-template-columns: 1fr; }
.col { padding: 0.7rem 0; border-top: 1px dotted var(--paper-rule); }
.col h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.06rem;
  line-height: 1.18;
  margin: 0 0 0.3rem;
}
.col p { font-size: 0.86rem; color: #45402f; margin: 0; }

@media (min-width: 560px) {
  .paper-columns { grid-template-columns: repeat(3, 1fr); }
  .col { padding: 0.1rem 0.85rem; border-top: none; border-left: 1px solid var(--paper-rule); }
  .col:first-child { border-left: none; padding-left: 0; }
  .col:last-child { padding-right: 0; }
}

/* ---- swipeable story cards ---- */
.paper-masthead.standalone { margin: 0.3rem 0 0.2rem; }
.carousel {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin: 0 -1rem;            /* bleed to screen edges so cards can peek */
  padding: 0.25rem 1rem 0.7rem;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }
.card {
  flex: 0 0 86%;
  max-width: 460px;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  background: var(--paper-grain), #f1e9d4;
  border: 1px solid #c4b691;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(40, 33, 20, 0.13);
  overflow: hidden;
}
.card-media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-bottom: 1px solid #c4b691;
  background: #e5dcc6;
}
.halftone {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.15) sepia(0.2) brightness(1.02);
}
.card-media::after {           /* newsprint dot screen over every photo */
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(20, 15, 8, 0.55) 0.5px, transparent 0.9px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
  opacity: 0.3;
  pointer-events: none;
}
.card-body { padding: 0.9rem 1rem 1.1rem; }
.card-index {
  font-family: var(--sans);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}
.card-body h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1.12;
  margin: 0.25rem 0 0.5rem;
}
.card-body p { font-size: 0.96rem; color: #322c21; margin: 0; }

/* ---- guess form: floating bar pinned to the bottom of the screen ---- */
.play { padding-bottom: 12rem; } /* clear the fixed guess bar */
.guess {
  position: fixed;
  left: 50%;
  bottom: calc(0.9rem + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 460px;
  z-index: 20;
  margin: 0;
  background: rgba(244, 239, 226, 0.97);
  backdrop-filter: blur(10px);
  border: 1px solid var(--ink);
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(40, 33, 20, 0.24);
  padding: 0.7rem 0.85rem;
}
.guess-inner { margin: 0 auto; }
.guess-row { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: end; }
.gf {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  font-family: var(--sans);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  gap: 0.25rem;
}
.guess-submit { flex: 1 1 100%; width: auto; margin-top: 0.1rem; }
select, input[type="number"] {
  font-family: var(--display);
  font-size: 1.15rem;
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--ink);
  background: var(--paper-bright);
  color: var(--ink);
  border-radius: 2px;
}
select:focus, input[type="number"]:focus { outline: 2px solid var(--stamp); outline-offset: 1px; }
.error { color: var(--stamp); font-family: var(--sans); font-size: 0.85rem; margin: 0 0 0.5rem; }

/* ---- buttons (ink-stamp feel) ---- */
button {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: 2px;
  padding: 0.8rem 1.2rem;
  letter-spacing: 0.02em;
  transition: transform 0.06s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
button:active { transform: translateY(2px); }
.primary {
  width: 100%;
  margin-top: 1rem;
  background: var(--accent);
  color: var(--paper-bright);
  border: 1px solid var(--accent);
  box-shadow: 3px 3px 0 rgba(26,23,18,0.18);
}
.primary:hover { box-shadow: 2px 2px 0 rgba(26,23,18,0.18); }
.primary:active { box-shadow: 1px 1px 0 rgba(26,23,18,0.18); }
.secondary { background: transparent; color: var(--ink); border: 1px solid var(--ink); }

/* ======================================================================
   REVEAL SCREEN
   ====================================================================== */
.reveal-eyebrow {
  font-family: var(--display);
  font-style: italic;
  color: var(--ink-soft);
  margin: 0 0 0.5rem;
}
.reveal-date {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.9rem, 8vw, 2.9rem);
  line-height: 1;
  color: var(--stamp);
  border: 3px solid var(--stamp);
  border-radius: 6px;
  padding: 0.18em 0.4em;
  display: inline-block;
  transform: rotate(-2deg);
  margin: 0.2rem 0 0.9rem;
}
.reveal-date.stamp { animation: stamp 0.5s cubic-bezier(0.2, 0.85, 0.3, 1) both; }
@keyframes stamp {
  0% { opacity: 0; transform: scale(1.6) rotate(-7deg); }
  55% { opacity: 1; transform: scale(0.94) rotate(-1deg); }
  100% { transform: scale(1) rotate(-2deg); }
}
.reveal-verdict {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-family: var(--sans);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 0.65rem 0;
  margin: 0 0 1rem;
}
.verdict-main { font-weight: 700; font-size: 1.1rem; font-family: var(--display); }
.verdict-tone { color: var(--ink-soft); }
.verdict-points { margin-left: auto; font-weight: 900; font-family: var(--display); color: var(--good); }
.verdict-icon { font-size: 1.5rem; line-height: 1; }

/* "How far off" timeline */
.timeline { margin: 0 0 1.2rem; }
.tl-track {
  position: relative;
  height: 4px;
  background: var(--rule);
  border-radius: 2px;
  margin: 1.6rem 0 0.4rem;
}
.tl-gap { position: absolute; top: 0; height: 4px; background: var(--stamp); opacity: 0.3; }
.tl-dot {
  position: absolute;
  top: 50%;
  width: 15px; height: 15px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--paper-bright);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.tl-dot.guess { background: var(--ink); }
.tl-dot.actual { background: var(--stamp); }
.tl-ends, .tl-key { font-family: var(--sans); }
.tl-ends {
  display: flex; justify-content: space-between;
  font-size: 0.66rem; color: var(--ink-soft);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.tl-key { display: flex; gap: 1.2rem; justify-content: center; font-size: 0.74rem; margin-top: 0.35rem; }
.tl-key .k::before { content: "\25CF"; margin-right: 0.3rem; }
.tl-key .k.guess::before { color: var(--ink); }
.tl-key .k.actual::before { color: var(--stamp); }

.blurb { font-size: 1.08rem; margin: 0 0 1rem; }
.reveal-figure { margin: 0 0 1rem; }
.reveal-image {
  width: 100%;
  border: 1px solid var(--rule);
  filter: grayscale(18%) sepia(8%);
  display: block;
}
.reveal-figure figcaption {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-top: 0.3rem;
  text-align: right;
}
.sources { font-family: var(--sans); font-size: 0.9rem; }
.sources summary {
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.76rem;
  color: var(--ink-soft);
}
.links { margin: 0.6rem 0 0; padding-left: 1.1rem; }
.links li { margin: 0.3rem 0; }
.links a, .recap-link { color: var(--ink); text-underline-offset: 2px; }

/* ======================================================================
   RESULTS SCREEN
   ====================================================================== */
.results h2 { font-family: var(--display); font-weight: 900; font-size: 1.9rem; margin: 0 0 0.5rem; }
.final-score { font-family: var(--display); font-size: 2.8rem; margin: 0.5rem 0 0; font-weight: 900; }
.final-score span { font-size: 1.2rem; color: var(--ink-soft); font-weight: 400; }
.percentile { font-family: var(--sans); margin: 0.2rem 0 1.2rem; }
.percentile strong { font-family: var(--display); }
.stub-note { color: var(--ink-soft); font-size: 0.78rem; }
.histogram {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 90px;
  padding: 0 0 0.4rem;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 1.5rem;
}
.bar { flex: 1; background: var(--rule); min-height: 3px; transition: height 0.4s ease; }
.bar.you { background: var(--stamp); }
.recap { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.recap li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 0.9rem;
}
.recap-square { font-size: 1.1rem; }
.recap-date { font-weight: 700; min-width: 7.5rem; font-family: var(--display); }
.recap-link { color: var(--ink-soft); }
.results-actions { margin-top: 0.5rem; }
.big-share {
  width: 100%;
  margin-top: 0;
  font-size: 1.1rem;
  padding: 1rem 1.2rem;
}
.home-link {
  display: block;
  width: 100%;
  margin: 0.7rem auto 0;
  background: none;
  border: none;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.88rem;
  padding: 0.4rem;
}
.toast {
  font-family: var(--sans);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 1rem;
  white-space: pre-line;
  color: var(--good);
}

/* ---- error / loading / colophon ---- */
.screen.error, .screen.loading { text-align: center; padding-top: 2rem; }
.screen.loading p { font-family: var(--display); font-style: italic; color: var(--ink-soft); }
.hint { font-family: var(--sans); font-size: 0.85rem; color: var(--ink-soft); }
code { background: #e7dfcc; padding: 0.1rem 0.35rem; border-radius: 2px; }
.colophon {
  max-width: 680px;
  margin: 0 auto;
  padding: 1rem;
  border-top: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 0.76rem;
  color: var(--ink-soft);
  text-align: center;
}
.colophon span { font-style: italic; }

@media (min-width: 620px) { .reveal-date { font-size: 3rem; } }

/* ---- respect reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
