:root {
  --ink: #2a2420;
  --paper: #f0eee9;
  --heat: #c45c26;
  --field: #f0eee9;
  --type: #2a2420;
  --rule: rgba(42, 36, 32, 0.22);
  --mute: rgba(42, 36, 32, 0.55);
  --caption: #5a534c;
  --folio: #c45c26;
  --spine: -90deg;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--field);
  color: var(--type);
}

body {
  font-family: "Arial Narrow", "Helvetica Neue Condensed", "Franklin Gothic Condensed", "Helvetica Neue", Arial, sans-serif;
}

.skip {
  position: absolute;
  left: -999px;
  z-index: 3;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 3;
  background: var(--heat);
  color: var(--paper);
  padding: 0.4rem 0.7rem;
  text-decoration: none;
}

.skip-strip:focus {
  top: 3.2rem;
}

.print {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

.folio {
  position: absolute;
  top: clamp(0.9rem, 3vw, 1.8rem);
  right: clamp(1rem, 4vw, 2.6rem);
  margin: 0;
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--folio);
  z-index: 2;
}

.spine {
  position: absolute;
  left: clamp(1.15rem, 4.2vw, 2.9rem);
  bottom: clamp(6.4rem, 13vw, 7.8rem);
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: clamp(0.46rem, 1.25vw, 1.05rem);
  margin: 0;
  transform: rotate(var(--spine));
  transform-origin: left bottom;
  white-space: nowrap;
}

.spine p {
  margin: 0;
  font-size: clamp(1.08rem, 2.35vw, 1.82rem);
  font-weight: 800;
  font-stretch: condensed;
  letter-spacing: -0.045em;
  line-height: 0.92;
  color: var(--type);
}

.filmstrip {
  position: absolute;
  left: clamp(1rem, 4vw, 2.6rem);
  right: clamp(1rem, 4vw, 2.6rem);
  bottom: 0.7rem;
  margin: 0;
  padding: 0.55rem 0 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.18rem 0.28rem;
  border-top: 1px solid var(--rule);
  z-index: 2;
}

.filmstrip a {
  display: block;
  font-family: ui-monospace, Menlo, Consolas, monospace;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.filmstrip a:hover,
.filmstrip a:focus {
  color: var(--heat);
  outline: none;
}

.filmstrip .origin a {
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  color: var(--mute);
}

.filmstrip .tick a {
  font-size: 0.42rem;
  letter-spacing: 0.06em;
  color: var(--mute);
  opacity: 0.78;
}

.filmstrip .recent a {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--type);
  opacity: 1;
}

.caption {
  position: absolute;
  right: clamp(1rem, 4vw, 2.6rem);
  bottom: clamp(2.6rem, 6vw, 3.4rem);
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.22rem;
  pointer-events: none;
  color: var(--caption);
  text-align: right;
}

.brand {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2.6vw, 1.85rem);
  letter-spacing: -0.03em;
  line-height: 1;
}

.meta {
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--caption) 78%, var(--mute));
}

@media (max-height: 700px) {
  .spine p {
    font-size: clamp(0.88rem, 2.1vh, 1.2rem);
  }
}

@media (max-width: 640px) {
  .print {
    min-height: 100dvh;
  }

  .spine {
    gap: 0.38rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html,
  body,
  .spine,
  .folio,
  .filmstrip {
    animation: none !important;
    transition: none !important;
  }
}
