/* ============================================================
   Hurtorius.com — creation.css
   The /creation index and every /creation/<slug> page.

   Inherits the site: Libre Baskerville, the near-black page, the
   film grain, the candle that follows the cursor, the gilt accent.
   Adds one idea of its own — the PLATE, a lit recess that an object
   sits inside. It is the reason a transparent icon and an icon with
   a black background read as the same kind of object, and it is what
   makes a wall and a shelf feel like the same exhibition.
   ============================================================ */

:root {
  --cr-measure: 64rem;                        /* the exhibition floor */
  --cr-read:    42rem;                        /* a label you can read */
  --cr-hair:    rgba(243, 238, 228, 0.12);    /* the site's hairline */
  --cr-hair-lit: rgba(247, 233, 205, 0.30);
  --cr-recess:  #0a0a0c;                      /* just off the page black */
}

/* ------------------------------------------------------------
   PAGE FRAME
   ------------------------------------------------------------ */
.siteheader--slim { padding-bottom: 0; }
.siteheader--slim .brand__name { font-size: clamp(1.6rem, 2.4vw + 0.8rem, 2.2rem); }
.siteheader--slim .brand__pfp { width: clamp(2.4rem, 5vw, 3rem); height: clamp(2.4rem, 5vw, 3rem); }

.cr-page {
  max-width: var(--cr-measure);
  margin: 0 auto;
  padding: clamp(2.2rem, 7vh, 4rem) clamp(1.1rem, 4vw, 2rem) clamp(4rem, 12vh, 7rem);
  position: relative;
  z-index: 1;
}

.cr-head { max-width: var(--cr-read); margin-bottom: clamp(2.4rem, 7vh, 4rem); }
.cr-page__title {
  margin: 0;
  font-size: clamp(2.2rem, 5vw + 1rem, 3.1rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-shadow: var(--text-glow-strong);
}
.cr-page__intro {
  margin: 1.1em 0 0;
  color: var(--ink-dim);
  text-shadow: var(--text-glow);
  text-wrap: pretty;
}
.cr-page__count {
  display: block;
  margin: 0.9em 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(223, 230, 242, 0.42);
}

.cr-note, .cr-error, .cr-empty {
  max-width: var(--cr-read);
  color: var(--ink-dim);
  text-shadow: var(--text-glow);
}
.cr-error { color: #f0c9c9; }
.cr-note a, .cr-error a {
  color: var(--ink);
  text-decoration-color: rgba(243, 238, 228, 0.4);
  text-underline-offset: 0.18em;
}

/* screen-reader-only text that still gets read aloud */
.cr-sr {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
.cr-glyph { display: inline-block; margin-left: 0.4em; font-style: normal; }

/* ------------------------------------------------------------
   THE YEAR SPINE — the rhythm every entry hangs from.
   A year always fits, whatever the work is, which is why the
   spine is the year and not a set of categories.
   ------------------------------------------------------------ */
.cr-year { margin: 0 0 clamp(3rem, 8vh, 5rem); }
.cr-year__head {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: clamp(1.5rem, 4vh, 2.2rem);
}
.cr-year__label {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(233, 200, 120, 0.72);
  text-shadow: 0 0 0.7em rgba(233, 200, 120, 0.28);
  white-space: nowrap;
}
.cr-year__head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg,
    var(--cr-hair-lit), var(--cr-hair) 10%, var(--cr-hair) 62%, rgba(243, 238, 228, 0));
}

/* ------------------------------------------------------------
   THE WALL — variation inside one grid.
   Two plinths pair themselves; a wall or a shelf takes the row.
   ------------------------------------------------------------ */
.cr-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2.4rem) clamp(1.4rem, 3vw, 2.6rem);
  align-items: start;
}
.cr-entry--feature,
.cr-entry--compact { grid-column: 1 / -1; }

@media (max-width: 46rem) {
  .cr-wall { grid-template-columns: minmax(0, 1fr); }
}

/* ------------------------------------------------------------
   AN ENTRY
   ------------------------------------------------------------ */
.cr-entry { position: relative; min-width: 0; }

.cr-entry__link {
  position: relative;
  display: grid;
  min-width: 0;
  text-decoration: none;
  color: var(--ink-dim);
  transition: color 0.4s ease, transform 0.4s cubic-bezier(0.2, 0.6, 0.3, 1);
}
.cr-entry__link.is-static { cursor: default; }

/* the gilt sentinel from the site's register — lit on hover/focus */
.cr-entry__link::before {
  content: "";
  position: absolute;
  left: calc(-1 * clamp(0.7rem, 1.6vw, 1.1rem));
  top: 0.15rem;
  bottom: 0.15rem;
  width: 2px;
  transform: scaleY(0);
  transform-origin: 50% 50%;
  background: linear-gradient(rgba(233, 200, 120, 0), var(--gold), rgba(233, 200, 120, 0));
  box-shadow: 0 0 8px rgba(233, 200, 120, 0.5);
  transition: transform 0.45s cubic-bezier(0.2, 0.6, 0.3, 1);
}
a.cr-entry__link:hover::before,
a.cr-entry__link:focus-visible::before { transform: scaleY(1); }
a.cr-entry__link:hover, a.cr-entry__link:focus-visible { color: var(--ink); }
a.cr-entry__link:focus-visible {
  outline: 2px solid rgba(247, 233, 205, 0.7);
  outline-offset: 6px;
  border-radius: 2px;
}

/* ------------------------------------------------------------
   THE PLATE — a lit recess an object sits in.
   Every picture on both pages goes through this, so an icon with a
   baked black background and one with transparency look identical.
   ------------------------------------------------------------ */
/* Two lights, not one: a wash from above (the room) and a pool behind the
   object (the picture light). The pool is what makes DARK artwork legible —
   the Demon's mark is a black head on a black page, and without something
   lit behind it the plate reads as an empty box. */
.cr-plate {
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(62% 72% at 50% 50%, rgba(247, 233, 205, 0.105), rgba(247, 233, 205, 0) 72%),
    radial-gradient(125% 105% at 50% 0%, rgba(247, 233, 205, 0.055), rgba(247, 233, 205, 0) 60%),
    #0c0c0f;
  border: 1px solid var(--cr-hair);
  box-shadow: inset 0 1px 0 rgba(255, 251, 244, 0.05);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.cr-plate img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  /* a candlelit rim so a dark object separates from a dark ground */
  filter: drop-shadow(0 0 1.1rem rgba(247, 233, 205, 0.16));
}
.cr-plate img.is-pixel { image-rendering: pixelated; }

/* a picture that failed to load leaves its words, not a broken-image hole */
.cr-plate.is-imageless { padding: 1rem; }
.cr-plate__fallback {
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(223, 230, 242, 0.5);
  text-align: center;
  text-wrap: pretty;
}

a.cr-entry__link:hover .cr-plate,
a.cr-entry__link:focus-visible .cr-plate {
  border-color: var(--cr-hair-lit);
  box-shadow: inset 0 1px 0 rgba(255, 251, 244, 0.07),
              0 0 2.4rem rgba(247, 233, 205, 0.07);
}

/* a wall: the object gets room around it */
.cr-plate--wall {
  width: 100%;
  min-height: clamp(11rem, 26vw, 16rem);
  padding: clamp(1.6rem, 4vw, 2.6rem);
}
.cr-plate--wall img { max-height: clamp(8rem, 20vw, 12.5rem); width: auto; }

/* a plinth: a small square mark */
.cr-plate--mark {
  width: clamp(4.4rem, 9vw, 5.4rem);
  height: clamp(4.4rem, 9vw, 5.4rem);
  padding: 0.5rem;
}
.cr-plate--mark img { max-height: 100%; width: auto; }

/* ------------------------------------------------------------
   THE LABEL — identical for every weight. This is the rhythm.
   ------------------------------------------------------------ */
.cr-label { display: block; min-width: 0; }

.cr-eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(223, 230, 242, 0.46);
}
.cr-eyebrow__dot { margin: 0 0.55em; color: rgba(233, 200, 120, 0.55); }

.cr-title {
  margin: 0.5rem 0 0;
  font-size: 1.32rem;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: 0.008em;
  color: var(--ink-dim);
  text-shadow: var(--text-glow);
  transition: color 0.4s ease, text-shadow 0.4s ease;
}
a.cr-entry__link:hover .cr-title,
a.cr-entry__link:focus-visible .cr-title {
  color: var(--ink);
  text-shadow: var(--text-glow-strong);
}

.cr-line {
  display: block;
  margin-top: 0.42rem;
  font-size: var(--fs-small);
  line-height: 1.55;
  color: var(--ink-dim);
  text-shadow: var(--text-glow);
  text-wrap: pretty;
}

.cr-note {
  display: block;
  margin-top: 0.95rem;
  max-width: var(--cr-read);
  font-size: 1rem;
  line-height: 1.62;
  color: rgba(203, 196, 182, 0.86);
  text-shadow: var(--text-glow);
  text-wrap: pretty;
}

.cr-cue {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(233, 200, 120, 0.72);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
a.cr-entry__link:hover .cr-cue,
a.cr-entry__link:focus-visible .cr-cue {
  color: var(--gold);
  text-shadow: 0 0 0.8em rgba(233, 200, 120, 0.45);
}
.cr-cue .cr-glyph { transition: transform 0.3s cubic-bezier(0.2, 0.6, 0.3, 1); }
a.cr-entry__link:hover .cr-cue .cr-glyph { transform: translateX(3px); }

/* ---- weights ---- */
.cr-entry--feature .cr-entry__link { gap: clamp(1.15rem, 3vw, 1.7rem); }
.cr-entry--feature .cr-title { font-size: clamp(1.6rem, 1rem + 1.9vw, 2.15rem); }
.cr-entry--feature .cr-line { font-size: 1.06rem; max-width: var(--cr-read); }

/* Once there is room, a wall becomes a spread: the object on one side, its
   label on the other. Stacked, a square mark in a full-width plate is mostly
   empty plate — side by side, the same object commands the row. */
@media (min-width: 60rem) {
  .cr-entry--feature .cr-entry__link {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(1.8rem, 3.6vw, 3rem);
    align-items: center;
  }
  .cr-entry--feature .cr-entry__link.is-plateless { grid-template-columns: minmax(0, 1fr); }
  .cr-entry--feature .cr-plate--wall { min-height: clamp(15rem, 24vw, 19rem); height: 100%; }
}

/* The mark column is ALWAYS reserved, with or without a picture. Two plinths
   sitting side by side must start their titles on the same line — an entry
   that happens to have no icon shifting left is exactly the raggedness that
   stops a mixed collection reading as one show. */
.cr-entry--standard .cr-entry__link {
  grid-template-columns: clamp(4.4rem, 9vw, 5.4rem) minmax(0, 1fr);
  gap: clamp(0.9rem, 2.2vw, 1.25rem);
  align-items: start;
}
.cr-entry--standard .cr-entry__link.is-plateless .cr-label { grid-column: 2; }

.cr-entry--compact .cr-entry__link {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 0.6rem 1.2rem;
  padding: 0.95rem 0;
  border-top: 1px solid var(--cr-hair);
}
.cr-entry--compact + .cr-entry--compact .cr-entry__link { border-top-color: rgba(243, 238, 228, 0.07); }
.cr-entry--compact .cr-label { display: contents; }
.cr-entry--compact .cr-eyebrow {
  grid-column: 2;
  grid-row: 1;
  text-align: right;
  align-self: baseline;
}
.cr-entry--compact .cr-title { grid-column: 1; grid-row: 1; margin: 0; font-size: 1.08rem; }
.cr-entry--compact .cr-line { grid-column: 1; grid-row: 2; margin-top: 0.2rem; }
.cr-entry--compact .cr-cue { grid-column: 2; grid-row: 2; margin: 0; text-align: right; justify-self: end; }

@media (max-width: 30rem) {
  .cr-entry--compact .cr-entry__link { grid-template-columns: minmax(0, 1fr); }
  .cr-entry--compact .cr-eyebrow,
  .cr-entry--compact .cr-cue { grid-column: 1; text-align: left; justify-self: start; }
  .cr-entry--compact .cr-eyebrow { grid-row: 1; }
  .cr-entry--compact .cr-title { grid-row: 2; margin-top: 0.35rem; }
  .cr-entry--compact .cr-line { grid-row: 3; }
  .cr-entry--compact .cr-cue { grid-row: 4; margin-top: 0.5rem; }
}

/* ---- secondary links, outside the block link ---- */
.cr-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.15rem;
  margin-top: 0.7rem;
}
.cr-entry--standard .cr-links { padding-left: calc(clamp(4.4rem, 9vw, 5.4rem) + clamp(0.9rem, 2.2vw, 1.25rem)); }
.cr-link {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(223, 230, 242, 0.55);
  text-decoration: none;
  border-bottom: 1px solid rgba(243, 238, 228, 0.18);
  padding-bottom: 0.15rem;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.cr-link:hover, .cr-link:focus-visible { color: var(--ink); border-bottom-color: var(--cr-hair-lit); }
.cr-link:focus-visible { outline: 2px solid rgba(247, 233, 205, 0.7); outline-offset: 4px; }

/* ============================================================
   A DETAIL PAGE  —  /creation/<slug>
   ============================================================ */
.cr-page--doc { max-width: 52rem; }
.cr-doc { position: relative; }

.cr-back {
  display: inline-block;
  margin-bottom: clamp(1.6rem, 4vh, 2.4rem);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(223, 230, 242, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}
.cr-back .cr-glyph { margin: 0 0.5em 0 0; transition: transform 0.3s cubic-bezier(0.2, 0.6, 0.3, 1); }
.cr-back:hover, .cr-back:focus-visible { color: var(--ink); }
.cr-back:hover .cr-glyph { transform: translateX(-3px); }
.cr-back:focus-visible { outline: 2px solid rgba(247, 233, 205, 0.7); outline-offset: 4px; }

.cr-doc__head { max-width: var(--cr-read); }
.cr-doc__title {
  margin: 0.55rem 0 0;
  font-size: clamp(2.3rem, 5.4vw + 1rem, 3.4rem);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-shadow: var(--text-glow-strong);
  text-wrap: balance;
}
.cr-doc__tagline {
  margin: 1rem 0 0;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--ink);
  text-shadow: var(--text-glow-strong);
  text-wrap: pretty;
}

.cr-plate--hero {
  width: 100%;
  min-height: clamp(12rem, 30vw, 18rem);
  padding: clamp(1.8rem, 5vw, 3rem);
  margin: clamp(2rem, 6vh, 3rem) 0 0;
}
.cr-plate--hero img { max-height: clamp(8rem, 20vw, 12rem); width: auto; }

.cr-sec { margin: clamp(2.2rem, 6vh, 3.2rem) 0 0; }
.cr-sec__head {
  margin: 0 0 0.7em;
  font-size: var(--fs-h3);
  line-height: 1.25;
  font-weight: 700;
  color: var(--ink);
  text-shadow: var(--text-glow-strong);
}

.cr-prose { max-width: var(--cr-read); }
.cr-prose p {
  margin: 0 0 1em;
  color: var(--ink-dim);
  text-shadow: var(--text-glow);
  text-wrap: pretty;
}
.cr-prose p:last-child { margin-bottom: 0; }
.cr-lead p { font-size: 1.08rem; color: rgba(203, 196, 182, 0.92); }

.cr-list { margin: 0.2em 0 0; padding-left: 1.5rem; list-style: none; max-width: var(--cr-read); }
.cr-list > li {
  position: relative;
  margin-bottom: 0.45rem;
  color: var(--ink-dim);
  text-shadow: var(--text-glow);
  text-wrap: pretty;
}
.cr-list > li::before {
  content: "·";
  position: absolute;
  left: -1.05rem;
  color: rgba(255, 236, 196, 0.6);
  text-shadow: 0 0 0.45em rgba(255, 236, 196, 0.5);
}

/* ---- actions: where you get the thing ---- */
.cr-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.4rem;
  margin: clamp(1.8rem, 5vh, 2.6rem) 0 0;
}
.cr-action, .cr-get__btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.cr-action {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(223, 230, 242, 0.62);
  border-bottom: 1px solid rgba(243, 238, 228, 0.2);
  padding-bottom: 0.2rem;
}
.cr-action:hover, .cr-action:focus-visible { color: var(--ink); border-bottom-color: var(--cr-hair-lit); }

.cr-get { display: flex; flex-direction: column; gap: 0.5rem; }
.cr-get__btn {
  padding: 0.72rem 1.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background:
    radial-gradient(120% 160% at 50% 0%, rgba(247, 233, 205, 0.1), rgba(247, 233, 205, 0) 70%),
    var(--cr-recess);
  border: 1px solid rgba(233, 200, 120, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 251, 244, 0.06);
}
.cr-get__btn:hover, .cr-get__btn:focus-visible {
  border-color: rgba(233, 200, 120, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 251, 244, 0.09), 0 0 1.9rem rgba(233, 200, 120, 0.2);
}
.cr-get__meta {
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(223, 230, 242, 0.44);
  max-width: 26rem;
  text-wrap: pretty;
}
.cr-action:focus-visible, .cr-get__btn:focus-visible {
  outline: 2px solid rgba(247, 233, 205, 0.7);
  outline-offset: 4px;
}

/* ---- facts ---- */
.cr-facts__list {
  margin: 0;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 0 1.4rem;
  max-width: var(--cr-read);
  border-top: 1px solid var(--cr-hair);
}
.cr-facts__key, .cr-facts__val {
  margin: 0;
  padding: 0.62rem 0;
  border-bottom: 1px solid rgba(243, 238, 228, 0.07);
  font-size: 0.88rem;
  line-height: 1.5;
}
.cr-facts__key {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: rgba(223, 230, 242, 0.44);
  white-space: nowrap;
  padding-top: 0.78rem;
}
.cr-facts__val { color: var(--ink-dim); text-shadow: var(--text-glow); text-wrap: pretty; }

@media (max-width: 30rem) {
  .cr-facts__list { grid-template-columns: minmax(0, 1fr); }
  .cr-facts__key { border-bottom: 0; padding-bottom: 0; }
  .cr-facts__val { padding-top: 0.15rem; }
}

/* ---- gallery ---- */
.cr-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11.5rem, 1fr));
  gap: clamp(1rem, 2.6vw, 1.6rem);
}
.cr-figure { margin: 0; }
.cr-plate--frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: clamp(0.9rem, 2.4vw, 1.4rem);
}
/* A gallery frame is a fixed square, so the object FILLS it rather than
   sitting at whatever pixel size the file happens to be — a 16x16 texture
   is 16 real pixels and would otherwise appear as a speck in the middle. */
.cr-plate--frame img { width: 100%; height: 100%; object-fit: contain; }
.cr-figure__cap {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(223, 230, 242, 0.5);
  text-wrap: pretty;
}
.cr-figure--wide { grid-column: 1 / -1; }

/* ---- media ---- */
.cr-video { display: block; width: 100%; height: auto; border: 1px solid var(--cr-hair); background: #000; }
.cr-tracks { display: grid; gap: 1.1rem; max-width: var(--cr-read); }
.cr-track__title {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  color: var(--ink-dim);
  text-shadow: var(--text-glow);
}
.cr-audio { width: 100%; }

/* click-to-load: nothing leaves this page until the reader asks */
.cr-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: var(--cr-recess);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--cr-hair);
  overflow: hidden;
}
.cr-embed__load {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1.5rem;
  font-family: inherit;
  color: var(--ink);
  background: radial-gradient(90% 120% at 50% 50%, rgba(10, 10, 12, 0.55), rgba(7, 7, 8, 0.9));
  border: 0;
  cursor: pointer;
  transition: background 0.3s ease;
}
.cr-embed:not(.has-poster) .cr-embed__load { background: transparent; }
.cr-embed__load:hover { background: radial-gradient(90% 120% at 50% 50%, rgba(247, 233, 205, 0.07), rgba(7, 7, 8, 0.86)); }
.cr-embed__play {
  font-size: 1.8rem;
  line-height: 1;
  color: rgba(233, 200, 120, 0.85);
  text-shadow: 0 0 1em rgba(233, 200, 120, 0.5);
}
.cr-embed__label { font-size: 0.9rem; text-shadow: var(--text-glow); }
.cr-embed__note {
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(223, 230, 242, 0.45);
  max-width: 22rem;
  text-align: center;
  text-wrap: pretty;
}
.cr-embed__load:focus-visible { outline: 2px solid rgba(247, 233, 205, 0.7); outline-offset: -4px; }
.cr-embed__frame { display: block; width: 100%; height: 100%; border: 0; }

/* ---- changelog ---- */
.cr-releases { margin: 0; padding: 0; list-style: none; max-width: var(--cr-read); }
.cr-release { padding: 1.15rem 0; border-top: 1px solid var(--cr-hair); }
.cr-release:first-child { border-top-color: var(--cr-hair-lit); }
.cr-release__head { display: flex; align-items: baseline; gap: 0.9rem; margin-bottom: 0.5rem; }
.cr-release__ver {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(233, 200, 120, 0.8);
  text-shadow: 0 0 0.7em rgba(233, 200, 120, 0.25);
}
.cr-release__date {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(223, 230, 242, 0.4);
}

.cr-doc__foot {
  margin-top: clamp(3rem, 9vh, 4.5rem);
  padding-top: 1.6rem;
  border-top: 1px solid var(--cr-hair);
}
.cr-back--foot { margin-bottom: 0; }

/* ------------------------------------------------------------
   MOTION / CONTRAST
   ------------------------------------------------------------ */
/* The entrance is CSS only and uses `both`, so every entry ENDS visible
   whether or not it was ever scrolled past. Nothing here can leave content
   stranded at opacity 0. `rise` is the site's own keyframe, from styles.css. */
@media (prefers-reduced-motion: no-preference) {
  .cr-entry { animation: rise 0.8s cubic-bezier(0.2, 0.6, 0.3, 1) both; }
  .cr-entry:nth-child(1) { animation-delay: 0.04s; }
  .cr-entry:nth-child(2) { animation-delay: 0.10s; }
  .cr-entry:nth-child(3) { animation-delay: 0.16s; }
  .cr-entry:nth-child(4) { animation-delay: 0.22s; }
  .cr-entry:nth-child(n + 5) { animation-delay: 0.28s; }
  .cr-doc__head, .cr-plate--hero { animation: rise 0.9s cubic-bezier(0.2, 0.6, 0.3, 1) 0.05s both; }
}

@media (prefers-reduced-motion: reduce) {
  .cr-entry__link, .cr-entry__link::before, .cr-title, .cr-plate,
  .cr-cue, .cr-cue .cr-glyph, .cr-back .cr-glyph { transition: none; }
}

@media (forced-colors: active) {
  .cr-plate, .cr-get__btn, .cr-embed, .cr-video { border-color: CanvasText; }
  .cr-entry__link::before { background: CanvasText; box-shadow: none; }
  .cr-facts__key, .cr-facts__val, .cr-release, .cr-entry--compact .cr-entry__link,
  .cr-facts__list, .cr-doc__foot { border-color: CanvasText; }
  a.cr-entry__link:focus-visible, .cr-get__btn:focus-visible { outline: 2px solid Highlight; }
}
