:root {
  --paper: #FAF5EE;
  --ink: #221A14;
  --flame: #FF5A2D;        /* decorative accent (large marks only) */
  --flame-text: #C93A10;   /* text-safe accent, ≥4.5:1 on paper */
  --muted: #6E6259;
}
@media (prefers-color-scheme: dark) {
  :root {
    --paper: #1C1511;
    --ink: #F5EDE3;
    --flame: #FF6A3D;
    --flame-text: #FF8A5C;
    --muted: #A79A8E;
  }
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  display: grid;
  place-items: center;
  padding: 3rem 1.5rem;
}
main { max-width: 34rem; width: 100%; }
a { color: var(--flame-text); }
.label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--flame-text);
  margin-bottom: 2.25rem;
}
.back {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--muted);
  margin-bottom: 2.5rem;
}
.back:hover { color: var(--flame-text); }
h1 {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 9vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin-bottom: 2rem;
}
h1 .dot { color: var(--flame); }
h2 {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 1.5rem;
  margin: 3rem 0 1.25rem;
}
h3 {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.lede {
  font-size: 1.125rem;
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 30rem;
}
.vibe {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  margin-bottom: 2.5rem;
}
.beats { list-style: none; margin-bottom: 2.5rem; }
.beats li { margin-bottom: 1.5rem; line-height: 1.6; }
.beats strong { font-weight: 500; display: block; }
.cards { display: grid; gap: 1.25rem; margin-bottom: 2.5rem; }
.card {
  border: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
  border-radius: 16px;
  padding: 1.25rem;
  transition: border-color 0.2s ease;
}
.card:hover { border-color: var(--flame); }
.card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.card p { line-height: 1.6; color: var(--ink); margin-bottom: 1rem; }
.card a.cardlink {
  font-weight: 500;
  text-decoration: none;
}
.btn {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  background: var(--flame);
  color: #FFF6EF;
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1.4rem;
  cursor: pointer;
}
.btn:hover { filter: brightness(1.06); }
.btn[disabled] { background: color-mix(in srgb, var(--muted) 35%, var(--paper)); color: var(--muted); cursor: default; filter: none; }
.btn.voted { background: transparent; border: 1.5px solid var(--flame); color: var(--flame-text); cursor: default; }
.now {
  font-size: 0.9375rem;
  color: var(--muted);
  border-top: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
  padding-top: 1.25rem;
  display: flex;
  gap: 0.6em;
  align-items: baseline;
}
.now .mark { color: var(--flame); font-size: 0.75em; }
.fineprint { font-size: 0.8125rem; color: var(--muted); line-height: 1.6; margin-top: 1.5rem; }
footer {
  margin-top: 4.5rem;
  font-size: 0.8125rem;
  color: var(--muted);
}
/* one motion signature: staggered rise on load, once */
.reveal { opacity: 0; transform: translateY(14px); animation: rise 0.64s cubic-bezier(0.2, 0.7, 0.2, 1) forwards; }
.r1 { animation-delay: 0.05s; } .r2 { animation-delay: 0.14s; }
.r3 { animation-delay: 0.23s; } .r4 { animation-delay: 0.32s; }
.r5 { animation-delay: 0.41s; } .r6 { animation-delay: 0.50s; }
.r7 { animation-delay: 0.59s; }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .reveal { animation: none; opacity: 1; transform: none; } }
