:root {
  --paper: #ffffff;
  --ink: #14110f;
  --muted: #9a938c;
  --hair: #e6e2dc;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  min-height: 100svh;
  background: var(--paper);
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  display: grid;
  place-items: center;
  padding: clamp(2rem, 7vw, 5rem);
  text-align: center;
  overflow-x: hidden;
}

main {
  max-width: 38rem;
  width: 100%;
}

/* ---- Rhyme ---- */
.verse {
  list-style: none;
  margin: 0 0 clamp(2.5rem, 8vw, 4rem);
  font-weight: 300;
  font-size: clamp(1.5rem, 6vw, 2.4rem);
  line-height: 1.7;
  letter-spacing: 0.005em;
}

/* the count, marked with the lightest possible touch */
.verse b { font-weight: 400; font-style: italic; }

/* "Seven for a secret, never to be told" — the line the whole page keeps */
.verse .coda {
  font-style: italic;
  color: var(--muted);
}

/* ---- Credit ---- */
.credit {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(0.6rem, 2.1vw, 0.72rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.9;
}

/* ---- Motion: a quiet fade, nothing more ---- */
@keyframes rise {
  from { opacity: 0; transform: translateY(0.5em); }
  to   { opacity: 1; transform: translateY(0); }
}

.verse li, .credit {
  opacity: 0;
  animation: rise 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.verse li:nth-child(1) { animation-delay: 0.25s; }
.verse li:nth-child(2) { animation-delay: 0.38s; }
.verse li:nth-child(3) { animation-delay: 0.51s; }
.verse li:nth-child(4) { animation-delay: 0.64s; }
.verse li:nth-child(5) { animation-delay: 0.77s; }
.verse li:nth-child(6) { animation-delay: 0.90s; }
.verse li:nth-child(7) { animation-delay: 1.03s; }
.verse li:nth-child(8) { animation-delay: 1.30s; }
.credit { animation-delay: 1.7s; }

@media (prefers-reduced-motion: reduce) {
  .verse li, .credit { opacity: 1; animation: none; }
}
