:root {

  --paper:    #ffffff;
  --paper-2:  #f2f2f1;
  --card:     #f6f6f5;

  --ink:      #121212;
  --ink-2:    #4b4b4b;
  --ink-3:    #6e6e6e;

  --rule:     #dedede;

  --spot:     #a6371f;
  --spot-2:   #7e2814;

  --serif: "Ubuntu Condensed", "Ubuntu", "Roboto Condensed", "Arial Narrow", system-ui, sans-serif;
  --sans:  "Ubuntu Condensed", "Ubuntu", "Roboto Condensed", "Arial Narrow", system-ui, sans-serif;
  --caps:  "Ubuntu Condensed", "Ubuntu", "Roboto Condensed", "Arial Narrow", system-ui, sans-serif;

  --page:  1440px;
  --gut:   clamp(20px, 4.4vw, 76px);
  --sec:   clamp(84px, 11.5vw, 186px);
  --gap:   clamp(24px, 3vw, 46px);

  --bar:   64px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--bar) + 24px);
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-kerning: normal;
}

i, em, cite {
  font-style: normal;
  letter-spacing: .02em;
  color: var(--ink);
}

b, strong { font-weight: 400; }

img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; }

a { color: var(--ink); text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--spot);
  outline-offset: 3px;
}

::selection { background: var(--spot); color: var(--paper); }

.skip {
  position: fixed;
  top: 8px; left: 8px;
  z-index: 200;
  transform: translateY(-200%);
  background: var(--ink);
  color: var(--paper);
  padding: 10px 18px;
  font-family: var(--caps);
  letter-spacing: .06em;
}
.skip:focus { transform: none; }

.label {
  font-family: var(--caps);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  line-height: 1.4;
}
.label--spot { color: var(--spot); }

.t-xl, .t-lg, .t-md, .t-sm {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.02;
  letter-spacing: -.004em;
}
.t-xl { font-size: clamp(3.9rem, 11.4vw, 9.4rem); line-height: .86; }
.t-lg { font-size: clamp(2.7rem, 6.2vw, 5.4rem); line-height: .98; }
.t-md { font-size: clamp(1.9rem, 3.2vw, 2.8rem); line-height: 1.06; }
.t-sm { font-size: clamp(1.4rem, 2vw, 1.75rem); line-height: 1.14; }

.lede {
  font-family: var(--serif);
  font-size: clamp(1.32rem, 2.3vw, 1.95rem);
  line-height: 1.36;
  color: var(--ink);
  font-weight: 400;
  max-width: 42ch;
}

.prose p + p { margin-top: 1.1em; }
.prose { max-width: 64ch; }
.prose a {
  color: var(--ink);
  box-shadow: inset 0 -1px 0 var(--rule);
  transition: box-shadow .2s ease, color .2s ease;
}
.prose a:hover { color: var(--spot); box-shadow: inset 0 -1px 0 var(--spot); }

.fine {
  font-size: .84rem;
  color: var(--ink-3);
  line-height: 1.55;
}

.wrap {
  width: 100%;
  max-width: var(--page);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.sec { padding-block: var(--sec); }
.sec--tight { padding-block: calc(var(--sec) * .58); }
.sec--sunk { background: var(--paper-2); }

.sec-head {
  margin-bottom: clamp(34px, 4.6vw, 72px);
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 8px;
  align-items: baseline;
}
@media (min-width: 720px) {
  .sec-head {
    grid-template-columns: 1fr auto;
    column-gap: clamp(24px, 3.4vw, 56px);
  }
  .sec-head .note { justify-self: end; text-align: right; }
}

.masthead {
  position: sticky;
  top: 0;
  z-index: 90;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(140%) blur(9px);
  -webkit-backdrop-filter: saturate(140%) blur(9px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.masthead.is-stuck { border-bottom-color: var(--rule); }

.masthead-in {
  height: var(--bar);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.mark {
  font-family: var(--caps);
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

.nav-list { display: flex; align-items: center; gap: clamp(14px, 1.7vw, 26px); }
.nav-list a {
  font-family: var(--caps);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding-block: 6px;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.nav-list a:hover { color: var(--ink); }
.nav-list a[aria-current] { color: var(--ink); border-bottom-color: var(--spot); }

.bar-right {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.7vw, 26px);
}

.lang {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--caps);
  font-size: .76rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.lang a {
  color: var(--ink-3);
  padding-block: 6px;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.lang a:hover { color: var(--ink); }
.lang a[aria-current] { color: var(--ink); border-bottom-color: var(--spot); }
.lang .sep { color: var(--rule); }

@media (max-width: 1023px) {
  .masthead .lang { display: none; }
}

.menu-lang { margin-top: 26px; }
.menu-lang .lang { font-size: .84rem; gap: 10px; }

.burger {
  display: none;
  width: 40px; height: 40px;
  margin-right: -8px;
  position: relative;
}
.burger span {
  position: absolute;
  left: 9px; right: 9px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .3s ease, opacity .2s ease;
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 23px; }
body.menu-open .burger span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

@media (max-width: 1023px) {
  .burger { display: block; }
  .nav { display: none; }
}

.menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--paper);
  padding: calc(var(--bar) + 28px) var(--gut) 40px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s;
}
body.menu-open .menu { opacity: 1; visibility: visible; }
body.menu-open { overflow: hidden; }

.menu ol { max-width: 640px; }
.menu a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 13px 0;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 8vw, 3rem);
  color: var(--ink);
  line-height: 1.02;
}
.menu a[aria-current] { color: var(--spot); }
.menu-foot { margin-top: 34px; }

@media (min-width: 1024px) { .menu { display: none; } }

.title-page {
  padding-top: clamp(38px, 6vw, 84px);
  padding-bottom: clamp(38px, 5vw, 72px);
  display: grid;
  gap: clamp(34px, 4.4vw, 76px);
  align-items: end;
}
@media (min-width: 900px) {
  .title-page { grid-template-columns: minmax(0, 1.06fr) minmax(0, .84fr); }
}

.title { margin-bottom: clamp(22px, 2.6vw, 34px); }
.title .given {
  display: block;
  font-family: var(--caps);
  font-size: clamp(.94rem, 1.7vw, 1.32rem);
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: .6em;
}
.title .family {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.6rem, 10.2vw, 9rem);
  line-height: .84;
  letter-spacing: -.008em;
  color: var(--ink);
}

.title-slug {
  display: flex;
  flex-wrap: wrap;
  gap: 6px clamp(24px, 3.4vw, 52px);
  margin-bottom: clamp(26px, 3vw, 40px);
}

.title-credit {
  margin-top: clamp(30px, 3.6vw, 48px);
  font-family: var(--caps);
  font-size: clamp(.68rem, .84vw, .78rem);
  letter-spacing: .17em;
  line-height: 2.2;
  color: var(--ink-3);
}
.title-credit .sep { color: var(--spot); padding: 0 .7em; }

.facts {
  margin-top: clamp(26px, 3vw, 38px);
  display: grid;
  gap: 11px;
}
.facts div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px 20px;
}
@media (min-width: 480px) {
  .facts div { grid-template-columns: 10.5rem minmax(0, 1fr); align-items: baseline; }
}
.facts dt { font-family: var(--caps); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.facts dd { color: var(--ink); }

.plate-figure figcaption {
  margin-top: 11px;
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-family: var(--caps);
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.plate-figure img { width: 100%; }

.strip-hold { background: var(--paper-2); }
.strip {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding: 2px 0;
  cursor: grab;
}
.strip::-webkit-scrollbar { display: none; }
.strip.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.strip .frame {
  flex: none;
  width: clamp(230px, 32vw, 470px);
  scroll-snap-align: start;
  position: relative;
}
.strip .frame img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
  transition: filter .45s ease, opacity .3s ease;
}
.strip .frame:hover img,
.strip .frame:focus-visible img { filter: grayscale(0) contrast(1); opacity: 1; }
.strip-note {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
}

.entry { display: grid; gap: clamp(28px, 4vw, 58px); align-items: start; }
@media (min-width: 860px) {
  .entry { grid-template-columns: minmax(0, .72fr) minmax(0, 1fr); }

  .entry--reel { grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); align-items: start; }
}
.entry-art { background: var(--card); }
.entry-art img { width: 100%; }

.entry-title { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 16px; }
.entry-alt {
  font-family: var(--serif);
  text-transform: lowercase;
  letter-spacing: .05em;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  color: var(--ink-3);
}

.pull {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.6vw, 2.9rem);
  line-height: 1.14;
  letter-spacing: -.004em;
  color: var(--ink);
  margin: clamp(18px, 2.2vw, 26px) 0 clamp(30px, 3.6vw, 46px);
  max-width: 20ch;
}

.spec { margin-top: 6px; display: grid; gap: 10px; }
.spec div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px 20px;
}
@media (min-width: 560px) {
  .spec div { grid-template-columns: 12rem minmax(0, 1fr); align-items: baseline; }
}
.spec dt { font-family: var(--caps); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.spec dd { color: var(--ink); }

.index-row > a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 6px clamp(18px, 2.6vw, 40px);
  padding: clamp(18px, 2.7vw, 36px) 0;
  transition: color .25s ease;
}
.index-row .row-year {
  font-family: var(--caps);
  font-size: .74rem;
  letter-spacing: .16em;
  color: var(--ink-3);
  min-width: 3.6em;
  transition: color .25s ease;
}
.index-row .row-name {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 6.2vw, 5rem);
  font-weight: 400;
  color: var(--ink);
  line-height: .98;
  letter-spacing: -.006em;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 2px clamp(10px, 1.2vw, 20px);
  transition: transform .5s cubic-bezier(.16,.84,.28,1), color .25s ease;
}
.index-row .row-name em {
  font-size: .26em;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 400;
  transition: color .25s ease;
}
.index-row .row-kind {
  font-family: var(--caps);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: right;
  transition: color .25s ease;
}
.index-row .row-thumb {
  grid-column: 2;
  width: 110px;
  background: var(--card);
}
.index-row .row-thumb img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

@media (hover: hover) and (min-width: 900px) {
  .index-row .row-thumb { display: none; }
  .index-row > a:hover .row-name { transform: translateX(clamp(16px, 2.4vw, 38px)); color: var(--spot); }
  .index-row > a:hover .row-name em,
  .index-row > a:hover .row-year,
  .index-row > a:hover .row-kind { color: var(--spot); }
}
@media (max-width: 640px) {
  .index-row > a { grid-template-columns: auto 1fr; }
  .index-row .row-kind { grid-column: 2; text-align: left; }
  .index-row .row-thumb { grid-column: 2; }
}

.index-plate {
  position: fixed;
  top: 0; left: 0;
  width: clamp(300px, 26vw, 420px);
  z-index: 60;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(.96);
  transition: opacity .3s ease, transform .3s cubic-bezier(.2,.7,.3,1);
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 24px 60px -28px rgba(0,0,0,.42);
  background: var(--card);
}
.index-plate.is-shown { opacity: 1; transform: translate3d(-50%, -50%, 0) scale(1); }
.index-plate img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

.plates {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
  gap: clamp(14px, 1.6vw, 24px);
}
.plates--wide { grid-template-columns: repeat(auto-fill, minmax(min(100%, 330px), 1fr)); }

.frame { cursor: zoom-in; }
.frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--card);
  transition: opacity .3s ease;
}
.frame:hover img, .frame:focus-visible img { opacity: .82; }
.reel {
  position: relative;
  display: block;
  width: 100%;
  background: var(--ink) center / cover no-repeat;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  overflow: hidden;
}
.reel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.52), rgba(0,0,0,0) 55%);
  transition: opacity .35s ease;
}
.reel:hover::after { opacity: .6; }
.reel-tab {
  position: absolute;
  left: 0; bottom: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--spot);
  color: var(--paper);
  padding: 8px 15px;
  font-family: var(--caps);
  font-size: .76rem;
  font-weight: 400;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: background .25s ease;
}
.reel:hover .reel-tab { background: var(--ink); }
.reel-tab::before {
  content: "";
  width: 0; height: 0;
  border-left: 8px solid currentColor;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.honours { display: grid; gap: clamp(34px, 4.4vw, 64px); max-width: 62rem; }
@media (min-width: 760px) { .honours { grid-template-columns: 1fr 1fr; } }
.honours li { display: grid; gap: 10px; align-content: start; }
.honours h3 { max-width: 20ch; }
.honours .fine { max-width: 40ch; }
.honours .fine a {
  color: var(--ink);
  box-shadow: inset 0 -1px 0 var(--rule);
  transition: box-shadow .2s ease, color .2s ease;
}
.honours .fine a:hover { color: var(--spot); box-shadow: inset 0 -1px 0 var(--spot); }

.selections { display: grid; gap: clamp(16px, 2vw, 24px); }
@media (min-width: 700px) { .selections { grid-template-columns: 1fr 1fr; } }

.selection {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: clamp(18px, 2.2vw, 26px);
  background: var(--card);
}
.selection img { width: 100%; mix-blend-mode: multiply; }
.selection h3 { font-family: var(--serif); font-size: clamp(1.35rem, 1.9vw, 1.75rem); font-weight: 400; color: var(--ink); line-height: 1.12; }
.selection .meta { display: block; margin-top: 5px; }
.selection .yr {
  font-family: var(--caps);
  font-size: .8rem;
  letter-spacing: .1em;
  color: var(--spot);
  display: block;
  margin-top: 8px;
}

.reads { display: grid; gap: clamp(26px, 3.4vw, 42px); }
.read {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
  transition: color .25s ease;
}
.read h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.08;
  margin: 10px 0 8px;
  max-width: 26ch;
  transition: color .25s ease;
}
.read:hover h3 { color: var(--spot); }
.read .go {
  font-size: 1.4rem;
  color: var(--ink-3);
  line-height: 1;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), color .25s ease;
}
.read:hover .go { color: var(--spot); transform: translate(3px, -3px); }

.notes { display: grid; gap: clamp(26px, 3vw, 40px); }
.note-row { display: grid; gap: 8px; }
@media (min-width: 1024px) {
  .note-row {
    grid-template-columns: 11rem minmax(0, 62ch);
    gap: 0 clamp(24px, 3vw, 46px);
  }
  .note-row .note { text-align: right; padding-top: .4em; }
}

.go-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--caps);
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  transition: color .25s ease, border-color .25s ease, gap .25s ease;
}
.go-link::after { content: "→"; font-family: var(--sans); letter-spacing: 0; }
.go-link:hover { color: var(--spot); border-color: var(--spot); gap: 15px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--ink);
  color: var(--paper);
  padding: 14px 30px;
  font-family: var(--caps);
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .13em;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
  transition: background .25s ease, color .25s ease;
}
.btn:hover { background: var(--spot); border-color: var(--spot); color: var(--paper); }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

.page-head {
  padding-top: clamp(34px, 5vw, 66px);
  padding-bottom: clamp(10px, 1.4vw, 18px);
}
.page-head .label { margin-bottom: 14px; }
.page-head .sub { margin-top: clamp(18px, 2.2vw, 34px); max-width: 52ch; }

.wrap:has(> .page-head) + .sec { padding-top: clamp(34px, 4.4vw, 62px); }

.billing {
  font-family: var(--caps);
  font-size: clamp(.72rem, 1.05vw, .86rem);
  letter-spacing: .07em;
  text-transform: uppercase;
  line-height: 2;
  text-align: center;
  color: var(--ink-3);
  max-width: 78ch;
  margin-inline: auto;
  text-wrap: balance;
}
.billing b { color: var(--ink); letter-spacing: .1em; }
.billing .sep { color: var(--spot); padding: 0 .35em; }

.contact-grid { display: grid; gap: clamp(34px, 4.4vw, 70px); align-items: start; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: minmax(0, .8fr) minmax(0, 1fr); } }

.lines { display: grid; gap: clamp(16px, 2vw, 22px); }
.lines li { display: grid; gap: 3px; }
.lines .v { font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.8rem); color: var(--ink); }
.lines .v a { box-shadow: inset 0 -1px 0 var(--rule); transition: box-shadow .2s ease, color .2s ease; }
.lines .v a:hover { color: var(--spot); box-shadow: inset 0 -1px 0 var(--spot); }

.form { display: grid; gap: 20px; max-width: 620px; }
.field { display: grid; gap: 7px; }
.field label { font-family: var(--caps); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.field input, .field textarea {
  background: var(--card);
  border: 0;
  border-bottom: 1.5px solid var(--rule);
  padding: 11px 13px;
  color: var(--ink);
  font-size: 1rem;
  transition: border-color .2s ease, background .2s ease;
  border-radius: 0;
  -webkit-appearance: none;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: 0; border-bottom-color: var(--ink); background: #fff; }
.field .why { font-size: .82rem; color: var(--spot); display: none; }
.field.is-bad input, .field.is-bad textarea { border-bottom-color: var(--spot); }
.field.is-bad .why { display: block; }

.form-note { min-height: 1.4em; font-size: .9rem; }
.form-note.is-bad { color: var(--spot); }
.form-done { display: none; padding: clamp(22px, 3vw, 34px); background: var(--card); }
.form-done.is-shown { display: block; }

.colophon {
  background: var(--paper-2);
  border-top: 1.5px solid var(--ink);
  padding-block: var(--sec) 34px;
  margin-top: var(--sec);
}
.colophon-call {
  display: grid;
  gap: clamp(18px, 2.4vw, 30px);
  padding-bottom: clamp(44px, 5.4vw, 76px);
}
.colophon-call .t-lg { max-width: 18ch; }

.colophon-cols {
  display: grid;
  gap: clamp(26px, 3vw, 40px);
  padding-block: clamp(32px, 4vw, 52px);
}
@media (min-width: 760px) { .colophon-cols { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.colophon-cols h3 { margin-bottom: 14px; }
.colophon-cols li + li { margin-top: 7px; }
.colophon-cols a {
  color: var(--ink-2);
  transition: color .2s ease;
}
.colophon-cols a:hover { color: var(--spot); }

.colophon-base {
  padding-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
}

.veil {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(12, 12, 12, .96);
  display: grid;
  place-items: center;
  padding: clamp(44px, 6vw, 76px) clamp(16px, 4vw, 56px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s;
}
.veil.is-open { opacity: 1; visibility: visible; }
.veil img, .veil iframe { max-width: 100%; max-height: 78vh; }
.veil img { width: auto; object-fit: contain; }

.veil-shut {
  position: absolute;
  top: 14px; right: 16px;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  color: var(--paper);
  font-size: 1.7rem;
  line-height: 1;
  opacity: .75;
  transition: opacity .2s ease;
}
.veil-shut:hover { opacity: 1; }

.veil-step {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 76px;
  display: grid;
  place-items: center;
  color: var(--paper);
  font-size: 1.5rem;
  opacity: .6;
  transition: opacity .2s ease;
}
.veil-step:hover { opacity: 1; }
.veil-step--prev { left: 4px; }
.veil-step--next { right: 4px; }

.veil-cap {
  position: absolute;
  left: 0; right: 0; bottom: 16px;
  text-align: center;
  padding-inline: 60px;
  font-family: var(--caps);
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--paper) 70%, transparent);
}
.veil-cap b { color: var(--spot); }

.theatre-frame { width: min(1120px, 100%); aspect-ratio: 16 / 9; background: #000; }
.theatre-frame iframe { width: 100%; height: 100%; border: 0; max-height: none; }

.to-top {
  position: fixed;
  right: clamp(14px, 2.4vw, 30px);
  bottom: clamp(14px, 2.4vw, 30px);
  z-index: 70;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .3s ease, visibility .3s, transform .3s ease, background .25s ease;
}
.to-top.is-shown { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--spot); }
.to-top svg { width: 19px; height: 19px; }

.js .rise {
  opacity: 0;
  transform: translateY(12px);
}
.js .rise.is-in {
  opacity: 1;
  transform: none;
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.3,1);
}
.js .rise.d1.is-in { transition-delay: .08s; }
.js .rise.d2.is-in { transition-delay: .16s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .js .rise { opacity: 1; transform: none; }
  .index-plate { display: none; }
  .strip img { filter: grayscale(1); }
}

@media print {
  .masthead, .menu, .to-top, .veil, .reel-tab, .strip-hold { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .js .rise { opacity: 1 !important; transform: none !important; }
  a { color: #000; }
}
