:root {
  --glacier: #7fb4d9;
  --sun: #f2c545;
  --red: #d63c30;
  --cream: #f4ead2;
  --paper: #fbf1d8;
  --ink: #182326;
  --pine: #1f4f47;
  --blue-dark: #2d617f;
  --muted: #6c6253;
  --line: rgba(24, 35, 38, 0.22);
  --shadow: 0 26px 70px rgba(24, 35, 38, 0.22);
  --radius: 6px;
  --display: 'Bebas Neue', sans-serif;
  --body: 'Jost', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  scrollbar-color: var(--red) var(--cream);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(242, 197, 69, 0.28) 0 14vw, transparent 14.5vw),
    linear-gradient(115deg, rgba(127, 180, 217, 0.55) 0 34%, transparent 34.2%),
    var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(214, 60, 48, 0.24);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
}

body::before {
  opacity: 0.24;
  mix-blend-mode: multiply;
  background-image:
    repeating-radial-gradient(circle at 0 0, rgba(24, 35, 38, 0.22) 0 0.72px, transparent 0.85px 3.2px),
    linear-gradient(90deg, rgba(214, 60, 48, 0.08), transparent 35%, rgba(127, 180, 217, 0.09));
}

body::after {
  opacity: 0.19;
  background:
    repeating-linear-gradient(0deg, transparent 0 13px, rgba(24, 35, 38, 0.09) 13px 14px),
    repeating-linear-gradient(90deg, transparent 0 17px, rgba(24, 35, 38, 0.06) 17px 18px);
  mix-blend-mode: multiply;
}

body.is-hidden *,
body.is-hidden *::before,
body.is-hidden *::after {
  animation-play-state: paused !important;
  transition-duration: 0s !important;
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}

a,
button,
input,
label {
  touch-action: manipulation;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  max-width: 100%;
}

:focus-visible {
  outline: 4px solid var(--red);
  outline-offset: 4px;
}

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

::-webkit-scrollbar {
  width: 16px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
  border-left: 3px solid var(--ink);
}

::-webkit-scrollbar-thumb {
  background:
    repeating-linear-gradient(45deg, rgba(24, 35, 38, 0.24) 0 4px, transparent 4px 8px),
    var(--red);
  border: 3px solid var(--ink);
}

::-webkit-scrollbar-thumb:hover {
  background:
    repeating-linear-gradient(45deg, rgba(24, 35, 38, 0.24) 0 4px, transparent 4px 8px),
    var(--sun);
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.plate-ledger strong,
.section-number,
.method-mark,
.route-code,
.edition-stats dd,
.commission-status,
.plate-loupe-ticket {
  font-variant-numeric: tabular-nums;
}

.skip-link {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 200;
  padding: 11px 16px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.skip-link:focus:not(:focus-visible) {
  transform: translateY(-150%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: stretch;
  min-height: 76px;
  border-bottom: 3px solid var(--ink);
  background: rgba(244, 234, 210, 0.92);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 12px clamp(18px, 3vw, 42px);
  text-decoration: none;
  border-right: 3px solid var(--ink);
}

.brand:hover .brand-stamp,
.brand:focus-visible .brand-stamp {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--sun);
}

.brand-stamp {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  background: var(--red);
  color: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--sun);
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.brand strong,
.brand em {
  display: block;
  line-height: 1;
}

.brand strong {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 2.65rem);
  font-weight: 400;
}

.brand em {
  margin-top: 3px;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: stretch;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 76px;
  padding: 0 18px;
  border-left: 2px solid var(--ink);
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.35rem;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--red);
  color: var(--paper);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 76px);
  padding: clamp(36px, 6vw, 78px) 0 clamp(42px, 7vw, 88px);
  border-bottom: 4px solid var(--ink);
}

.hero::before {
  content: "ALPENPOST";
  position: absolute;
  left: -0.06em;
  bottom: -0.28em;
  color: rgba(24, 35, 38, 0.08);
  font-family: var(--display);
  font-size: clamp(8rem, 28vw, 29rem);
  line-height: 0.8;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -11vw;
  top: 8vh;
  width: 44vw;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 18px solid var(--sun);
  background: repeating-conic-gradient(from 5deg, rgba(242, 197, 69, 0.8) 0 4deg, transparent 4deg 8deg);
  opacity: 0.62;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(1230px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.66fr);
  gap: clamp(26px, 5vw, 68px);
  align-items: start;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 710px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.8rem, 11.4vw, 10.8rem);
  font-weight: 400;
  line-height: 0.84;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
}

.title-accent {
  color: var(--red);
  text-shadow: 5px 3px 0 var(--sun), -4px -2px 0 rgba(127, 180, 217, 0.9);
}

.hero-lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: #253437;
  font-size: clamp(1.05rem, 1.8vw, 1.34rem);
  font-weight: 520;
}

.plate-ledger {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 650px;
  margin: 24px 0 0;
  padding: 0;
  border: 3px solid var(--ink);
  box-shadow: 7px 7px 0 var(--sun);
  list-style: none;
  background: rgba(251, 241, 216, 0.78);
}

.plate-ledger li {
  min-width: 0;
  padding: 13px 14px 11px;
  border-right: 2px solid var(--ink);
}

.plate-ledger li:last-child {
  border-right: 0;
}

.plate-ledger strong,
.plate-ledger span {
  display: block;
}

.plate-ledger strong {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.3vw, 2.8rem);
  line-height: 0.82;
}

.plate-ledger span {
  margin-top: 5px;
  color: #344143;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px 10px;
  border: 3px solid var(--ink);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: var(--display);
  font-size: 1.22rem;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.button:hover,
.button:focus-visible,
.button:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.button.primary {
  background: var(--red);
  color: var(--paper);
}

.button.ghost {
  background: var(--glacier);
}

.button.download {
  background: var(--sun);
}

.button.small {
  min-height: 44px;
  align-self: center;
  padding-inline: 15px;
  font-size: 1.05rem;
}

.hero-poster {
  position: relative;
  margin: 0;
  justify-self: end;
  align-self: start;
  width: min(408px, 100%);
  transform: rotate(2deg);
}

.poster-clip {
  position: absolute;
  left: 50%;
  z-index: 5;
  width: 86px;
  height: 26px;
  border: 3px solid var(--ink);
  background: var(--sun);
  box-shadow: 4px 4px 0 rgba(24, 35, 38, 0.26);
  transform: translateX(-50%) rotate(-1.5deg);
}

.poster-clip.top {
  top: -14px;
}

.poster-clip.bottom {
  bottom: -14px;
  background: var(--glacier);
  transform: translateX(-50%) rotate(1.5deg);
}

.hero-poster figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding: 10px 4px 0;
  border-top: 2px solid var(--ink);
  color: #303a3b;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-ticket {
  grid-column: 1 / 2;
  width: min(430px, 100%);
  padding: 18px 20px;
  background: var(--sun);
  border: 3px solid var(--ink);
  box-shadow: 9px 9px 0 var(--red);
  transform: rotate(-2deg);
}

.hero-ticket span,
.hero-ticket strong {
  display: block;
}

.hero-ticket span {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-ticket strong {
  margin: 3px 0;
  font-family: var(--display);
  font-size: 2.15rem;
  line-height: 1;
}

.poster-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 720 / 1040;
  background: var(--paper);
  border: 4px solid var(--ink);
  box-shadow: 14px 16px 0 rgba(24, 35, 38, 0.18), var(--shadow);
  overflow: hidden;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 220ms ease;
}

.poster-frame::before,
.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.poster-frame::before {
  opacity: 0.28;
  mix-blend-mode: multiply;
  background:
    repeating-radial-gradient(circle at 0 0, rgba(24, 35, 38, 0.28) 0 0.78px, transparent 0.95px 4.1px),
    linear-gradient(90deg, rgba(214, 60, 48, 0.12), transparent 30%, rgba(127, 180, 217, 0.11));
}

.poster-frame::after {
  inset: 10px;
  border: 1px solid rgba(24, 35, 38, 0.45);
  box-shadow: inset 0 0 0 10px rgba(251, 241, 216, 0.18);
}

.poster-frame svg {
  display: block;
  width: 100%;
  height: 100%;
}

.poster-frame-large {
  animation: paperSettle 900ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.press-ribbon {
  position: relative;
  overflow: hidden;
  border-block: 3px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  white-space: nowrap;
}

.press-ribbon-track {
  display: flex;
  width: max-content;
  animation: ribbonMove 26s linear infinite;
}

.press-ribbon span {
  display: inline-block;
  padding: 12px 0 10px;
}

.section {
  position: relative;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(62px, 9vw, 110px) 0;
}

.section-head {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 42px);
  align-items: start;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.section-head h2 {
  max-width: 880px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 8vw, 7.8rem);
  font-weight: 400;
  line-height: 0.88;
  text-transform: uppercase;
}

.section-number {
  margin: 0;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--sun);
  font-family: var(--display);
  font-size: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
  align-items: start;
}

.gallery-proofline {
  display: grid;
  grid-template-columns: 0.82fr 1.35fr 0.95fr;
  gap: 0;
  margin: calc(clamp(28px, 5vw, 54px) * -0.42) 0 clamp(22px, 4vw, 36px);
  border: 3px solid var(--ink);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--glacier);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-proofline span {
  min-width: 0;
  padding: 13px 16px;
  border-right: 2px solid var(--ink);
}

.gallery-proofline span:first-child {
  background: var(--red);
  color: var(--paper);
}

.gallery-proofline span:last-child {
  border-right: 0;
  background: var(--sun);
}

.gallery-item {
  display: grid;
  gap: 12px;
}

.gallery-item:hover .poster-frame,
.gallery-item:focus-within .poster-frame {
  transform: translate(-2px, -3px) rotate(-0.6deg);
  box-shadow: 18px 20px 0 rgba(24, 35, 38, 0.2), 0 34px 80px rgba(24, 35, 38, 0.24);
}

.gallery-item:nth-child(2n) {
  margin-top: clamp(18px, 4vw, 46px);
}

.gallery-item:nth-child(4n+3) {
  transform: rotate(-1.2deg);
}

.gallery-item:nth-child(4n+1) {
  transform: rotate(1.1deg);
}

.gallery-caption {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  padding-top: 8px;
  border-top: 2px solid var(--ink);
}

.gallery-caption strong {
  display: block;
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 0.9;
}

.gallery-caption span {
  display: block;
  color: #3a4546;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 3px solid var(--ink);
  background: var(--sun);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.icon-button svg {
  width: 23px;
  height: 23px;
}

.icon-button:hover,
.icon-button:focus-visible,
.icon-button:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}

.method-section {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1240px) / 2));
  background:
    linear-gradient(90deg, var(--ink) 0 59%, var(--blue-dark) 59% 100%);
  color: var(--paper);
  border-block: 4px solid var(--ink);
}

.section-head-inverted .eyebrow {
  color: var(--sun);
}

.section-head-inverted .section-number {
  background: var(--sun);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--red);
}

.method-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 3px solid var(--paper);
  box-shadow: 14px 14px 0 var(--red);
}

.method-spread {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 4vw, 44px);
  align-items: stretch;
}

.plate-exploder {
  position: relative;
  min-height: 430px;
  border: 3px solid var(--paper);
  background:
    repeating-linear-gradient(90deg, rgba(251, 241, 216, 0.14) 0 2px, transparent 2px 12px),
    rgba(251, 241, 216, 0.05);
  box-shadow: 12px 12px 0 var(--blue-dark);
  overflow: hidden;
}

.plate-exploder::before {
  content: "PLATE STACK";
  position: absolute;
  left: 22px;
  top: 20px;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.plate-exploder p {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  margin: 0;
  max-width: 310px;
  color: var(--paper);
  font-weight: 760;
}

.plate-sheet {
  position: absolute;
  width: 72%;
  height: 42%;
  border: 3px solid var(--paper);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.22);
  transform: rotate(-4deg);
}

.plate-sheet span {
  position: absolute;
  left: 15px;
  bottom: 12px;
  color: inherit;
  font-family: var(--display);
  font-size: 2.1rem;
  line-height: 1;
}

.plate-sky {
  left: 22px;
  top: 68px;
  color: var(--ink);
  background:
    radial-gradient(circle at 74% 25%, var(--sun) 0 28px, transparent 29px),
    repeating-conic-gradient(from 8deg at 74% 25%, rgba(242, 197, 69, 0.4) 0 6deg, transparent 6deg 12deg),
    var(--glacier);
}

.plate-mountain {
  right: 22px;
  top: 126px;
  color: var(--paper);
  background:
    linear-gradient(142deg, transparent 0 35%, var(--pine) 35.5% 54%, transparent 54.5%),
    linear-gradient(24deg, transparent 0 48%, var(--blue-dark) 48.5% 67%, transparent 67.5%),
    var(--red);
}

.plate-activity {
  left: 52px;
  top: 196px;
  color: var(--ink);
  background:
    radial-gradient(circle at 24% 66%, var(--red) 0 8px, transparent 9px),
    radial-gradient(circle at 39% 58%, var(--sun) 0 7px, transparent 8px),
    repeating-linear-gradient(118deg, transparent 0 18px, rgba(24, 35, 38, 0.65) 18px 21px),
    var(--paper);
}

.plate-type {
  right: 42px;
  top: 264px;
  color: var(--paper);
  background:
    linear-gradient(90deg, var(--ink) 0 64%, var(--red) 64% 100%);
}

.method-card:nth-child(2n) {
  border-right: 0;
}

.method-card:nth-child(-n+2) {
  border-bottom: 3px solid var(--paper);
}

.method-card {
  min-height: 320px;
  padding: clamp(22px, 3vw, 38px);
  background: rgba(244, 234, 210, 0.05);
  border-right: 3px solid var(--paper);
}

.method-card:nth-child(2) {
  background: var(--red);
}

.method-card:nth-child(3) {
  background: var(--glacier);
  color: var(--ink);
}

.method-card:last-child {
  border-right: 0;
  background: var(--sun);
  color: var(--ink);
}

.method-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  border: 3px solid currentColor;
  font-family: var(--display);
  font-size: 2rem;
}

.method-card h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.method-card p {
  margin: 0;
  font-weight: 560;
}

.desk-shell {
  display: grid;
  grid-template-columns: minmax(300px, 500px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.desk-controls {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 30px);
  border: 4px solid var(--ink);
  background:
    linear-gradient(90deg, rgba(214, 60, 48, 0.06), transparent 38%, rgba(127, 180, 217, 0.12)),
    var(--paper);
  box-shadow: 10px 10px 0 var(--glacier);
}

.desk-intro h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 2.35rem;
  font-weight: 400;
  line-height: 0.9;
}

.desk-intro p {
  margin: 0 0 8px;
  color: #344143;
  font-size: 0.98rem;
  font-weight: 560;
}

.desk-controls > label {
  display: grid;
  gap: 6px;
}

.desk-controls > label > span,
.plate-field legend {
  font-size: 0.77rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plate-field {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.plate-field legend {
  margin-bottom: 8px;
  padding: 0;
}

.plate-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.plate-options label {
  position: relative;
  min-width: 0;
}

.plate-options input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.plate-options label > span {
  display: grid;
  min-height: 66px;
  padding: 10px 11px 9px;
  border: 3px solid var(--ink);
  background: #fff8e7;
  color: var(--ink);
  box-shadow: 4px 4px 0 rgba(24, 35, 38, 0.18);
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease, color 150ms ease;
}

.plate-options label:hover > span {
  background: #fff2bd;
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 rgba(24, 35, 38, 0.24);
}

.plate-options b,
.plate-options em {
  min-width: 0;
}

.plate-options b {
  font-family: var(--display);
  font-size: 1.38rem;
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.plate-options em {
  margin-top: 4px;
  color: #465153;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.plate-options input:checked + span {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 4px 4px 0 var(--red);
  transform: translate(-1px, -1px);
}

.plate-options input:checked + span em {
  color: rgba(251, 241, 216, 0.78);
}

.plate-options input:focus-visible + span {
  outline: 4px solid var(--red);
  outline-offset: 4px;
}

.plate-options-time label:nth-child(2) input:checked + span {
  background: var(--sun);
  color: var(--ink);
}

.plate-options-time label:nth-child(3) input:checked + span {
  background: var(--red);
  color: var(--paper);
}

.plate-options-time label:nth-child(4) input:checked + span {
  background: var(--blue-dark);
  color: var(--paper);
}

.desk-controls select,
.desk-controls > label > input {
  width: 100%;
  min-height: 48px;
  border: 3px solid var(--ink);
  border-radius: 0;
  background: #fff8e7;
  color: var(--ink);
  padding: 9px 12px;
  font-weight: 760;
  transition: background 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.desk-controls > label > input:hover,
.desk-controls > label > input:focus {
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--sun);
  transform: translate(-1px, -1px);
}

.desk-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 6px;
}

.commission-stage {
  display: grid;
  justify-items: center;
  gap: 14px;
  min-width: 0;
}

.commission-frame {
  width: min(540px, 100%);
}

.press-bed {
  position: relative;
  --loupe-left: 76%;
  --loupe-top: 43%;
  width: min(690px, 100%);
  min-width: 0;
  padding: clamp(26px, 4vw, 42px) clamp(18px, 3vw, 36px) clamp(22px, 4vw, 34px);
  border: 4px solid var(--ink);
  background:
    linear-gradient(90deg, var(--red) 0 10px, transparent 10px calc(100% - 10px), var(--glacier) calc(100% - 10px)),
    repeating-linear-gradient(0deg, rgba(24, 35, 38, 0.1) 0 1px, transparent 1px 15px),
    var(--sun);
  box-shadow: 14px 14px 0 var(--ink);
  isolation: isolate;
}

.press-bed::before,
.press-bed::after {
  content: "";
  position: absolute;
  top: 12px;
  width: 70px;
  height: 20px;
  border: 3px solid var(--ink);
  background: var(--paper);
}

.press-bed::before {
  left: 18px;
}

.press-bed::after {
  right: 18px;
}

.press-ruler {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 12px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.press-ruler span {
  width: 2px;
  height: 18px;
  background: var(--ink);
}

.registration-tags {
  position: absolute;
  right: 17px;
  top: 50%;
  display: grid;
  gap: 8px;
  transform: translateY(-50%);
}

.registration-tags span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 3px solid var(--ink);
  background: var(--paper);
  font-size: 0.72rem;
  font-weight: 950;
}

.registration-tags span:nth-child(1) {
  background: var(--glacier);
}

.registration-tags span:nth-child(2) {
  background: var(--red);
  color: var(--paper);
}

.registration-tags span:nth-child(3) {
  background: var(--sun);
}

.commission-frame {
  cursor: crosshair;
  touch-action: pan-y;
  z-index: 1;
}

.commission-stage.is-pulling .commission-frame {
  animation: pressPulse 680ms cubic-bezier(0.16, 0.84, 0.22, 1) both;
}

.commission-stage.is-pulling .commission-frame::before {
  opacity: 0.72;
  background:
    linear-gradient(105deg, transparent 0 34%, rgba(251, 241, 216, 0.86) 41%, rgba(214, 60, 48, 0.34) 46%, rgba(127, 180, 217, 0.3) 50%, transparent 59%),
    repeating-radial-gradient(circle at 0 0, rgba(24, 35, 38, 0.28) 0 0.78px, transparent 0.95px 4.1px);
  background-size: 220% 100%, auto;
  animation: inkSweep 680ms cubic-bezier(0.16, 0.84, 0.22, 1) both;
}

.plate-loupe {
  position: absolute;
  left: var(--loupe-left);
  top: var(--loupe-top);
  z-index: 6;
  width: clamp(104px, 18vw, 146px);
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-6deg);
  transform-origin: 50% 50%;
  transition: left 80ms linear, top 80ms linear, transform 180ms ease, filter 180ms ease;
  filter: drop-shadow(8px 10px 0 rgba(24, 35, 38, 0.28));
}

.press-bed.is-loupe-active .plate-loupe,
.commission-frame:focus-visible + .plate-loupe {
  transform: translate(-50%, -50%) rotate(1.5deg) scale(1.05);
  filter: drop-shadow(10px 12px 0 rgba(24, 35, 38, 0.34));
}

.plate-loupe-glass {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 5px solid var(--ink);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(251, 241, 216, 0.15), rgba(251, 241, 216, 0.58) 66%, rgba(24, 35, 38, 0.12) 67%),
    var(--paper);
  box-shadow: inset 0 0 0 5px rgba(251, 241, 216, 0.45), 0 0 0 3px var(--paper);
}

.plate-loupe-glass::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    repeating-radial-gradient(circle at 0 0, rgba(24, 35, 38, 0.34) 0 1px, transparent 1.2px 5px),
    linear-gradient(135deg, rgba(255, 248, 231, 0.36), transparent 42%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.plate-loupe-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 50%;
  background: var(--paper);
}

.plate-loupe-art svg {
  position: absolute;
  display: block;
  max-width: none;
}

.plate-loupe-cross,
.plate-loupe-cross::before,
.plate-loupe-cross::after {
  position: absolute;
  z-index: 4;
  pointer-events: none;
}

.plate-loupe-cross {
  inset: 50% auto auto 50%;
  width: 34%;
  height: 34%;
  border: 2px solid rgba(24, 35, 38, 0.75);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.plate-loupe-cross::before,
.plate-loupe-cross::after {
  content: "";
  background: rgba(214, 60, 48, 0.78);
}

.plate-loupe-cross::before {
  left: 50%;
  top: -28%;
  width: 2px;
  height: 156%;
}

.plate-loupe-cross::after {
  left: -28%;
  top: 50%;
  width: 156%;
  height: 2px;
}

.plate-loupe-ticket {
  width: max-content;
  min-width: 92px;
  margin: -5px auto 0;
  padding: 6px 8px 5px;
  border: 3px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--red);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.plate-loupe-ticket b,
.plate-loupe-ticket span {
  display: block;
}

.commission-status {
  margin: 8px 0 0;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.commission-note {
  max-width: 620px;
  margin: 0;
  color: #354144;
  font-size: 0.92rem;
  font-weight: 760;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.route-ledger {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 32px);
}

.route-card {
  position: relative;
  min-height: 360px;
  padding: clamp(24px, 3vw, 36px);
  border: 4px solid var(--ink);
  background: var(--paper);
  box-shadow: 9px 9px 0 var(--red);
  overflow: hidden;
  transition: transform 200ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 200ms ease;
}

.route-card:hover,
.route-card:focus-within {
  transform: translate(-3px, -3px);
  box-shadow: 13px 13px 0 var(--red);
}

.route-card:nth-child(2) {
  box-shadow: 9px 9px 0 var(--glacier);
  margin-top: 42px;
}

.route-card:nth-child(2):hover,
.route-card:nth-child(2):focus-within {
  box-shadow: 13px 13px 0 var(--glacier);
}

.route-card:nth-child(3) {
  box-shadow: 9px 9px 0 var(--sun);
}

.route-card:nth-child(3):hover,
.route-card:nth-child(3):focus-within {
  box-shadow: 13px 13px 0 var(--sun);
}

.route-card::before {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 140px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, var(--sun) 0 5px, transparent 5px 10px);
  opacity: 0.75;
}

.route-code {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 42px;
  background: var(--red);
  color: var(--paper);
  border: 3px solid var(--ink);
  font-family: var(--display);
  font-size: 1.8rem;
}

.route-card h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 0.88;
  text-transform: uppercase;
}

.route-card p {
  margin: 0;
  color: #303d3f;
  font-weight: 560;
}

.route-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 0;
}

.route-card dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-card dd {
  margin: 2px 0 0;
  font-family: var(--display);
  font-size: 1.45rem;
}

.edition-section {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1240px) / 2));
  background: var(--red);
  color: var(--paper);
  border-block: 4px solid var(--ink);
}

.edition-section .eyebrow {
  color: var(--sun);
}

.edition-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) 1.3fr;
  gap: clamp(24px, 5vw, 68px);
  align-items: start;
}

.edition-grid h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  font-weight: 400;
  line-height: 0.86;
  text-transform: uppercase;
}

.edition-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
}

.edition-stats div {
  min-height: 154px;
  padding: 22px;
  border: 3px solid var(--paper);
  background: rgba(24, 35, 38, 0.14);
}

.edition-stats dt {
  color: rgba(251, 241, 216, 0.82);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.edition-stats dd {
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 5.05rem);
  line-height: 0.8;
}

.edition-stats div:nth-child(3) dd {
  font-size: clamp(2.4rem, 4.2vw, 4.45rem);
  line-height: 0.86;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px 28px;
  padding: 24px clamp(20px, 4vw, 54px);
  background: var(--ink);
  color: var(--paper);
  border-top: 4px solid var(--sun);
  font-weight: 760;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.site-footer nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border: 2px solid transparent;
  text-decoration-thickness: 2px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--sun);
  border-color: var(--sun);
}

.poster-text {
  font-family: var(--display);
  letter-spacing: 0;
}

.poster-small {
  font-family: var(--body);
  font-weight: 850;
  letter-spacing: 0.1em;
}

.guide-body {
  background:
    linear-gradient(90deg, rgba(214, 60, 48, 0.14) 0 24%, transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(242, 197, 69, 0.42), transparent 18vw),
    var(--cream);
}

.guide-hero {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(50px, 9vw, 120px) 0 clamp(34px, 6vw, 70px);
}

.guide-hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.6rem, 14vw, 12rem);
  font-weight: 400;
  line-height: 0.82;
  text-transform: uppercase;
}

.guide-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  font-weight: 560;
}

.guide-hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 760px;
  margin-top: 32px;
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--red);
  background: var(--paper);
}

.guide-hero-proof span {
  min-width: 0;
  padding: 12px 14px;
  border-right: 2px solid var(--ink);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guide-hero-proof span:nth-child(1) {
  background: var(--glacier);
}

.guide-hero-proof span:nth-child(2) {
  background: var(--sun);
}

.guide-hero-proof span:nth-child(3) {
  background: var(--red);
  color: var(--paper);
}

.guide-hero-proof span:last-child {
  border-right: 0;
  background: var(--ink);
  color: var(--paper);
}

.guide-main {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: clamp(60px, 8vw, 100px);
}

.guide-paper {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  padding: clamp(24px, 5vw, 54px);
  border: 4px solid var(--ink);
  background: var(--paper);
  box-shadow: 14px 14px 0 var(--glacier);
}

.guide-index {
  position: sticky;
  top: 104px;
  align-self: start;
  border-right: 3px solid var(--ink);
  padding-right: 24px;
}

.guide-index span {
  display: block;
  font-family: var(--display);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--red);
}

.guide-index p {
  margin: 14px 0 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.guide-swatch-strip {
  width: 132px;
  height: 42px;
  margin-top: 30px;
  border: 3px solid var(--ink);
  background:
    linear-gradient(90deg, var(--red) 0 24%, var(--sun) 24% 48%, var(--glacier) 48% 72%, var(--ink) 72%),
    repeating-radial-gradient(circle at 0 0, rgba(24, 35, 38, 0.24) 0 0.8px, transparent 1px 5px);
  background-blend-mode: normal, multiply;
  box-shadow: 7px 7px 0 var(--glacier);
}

.guide-mini-poster {
  position: relative;
  width: 132px;
  aspect-ratio: 720 / 1040;
  margin-top: 24px;
  border: 3px solid var(--ink);
  background:
    radial-gradient(circle at 74% 20%, var(--sun) 0 16px, transparent 17px),
    repeating-conic-gradient(from 8deg at 74% 20%, rgba(242, 197, 69, 0.34) 0 7deg, transparent 7deg 13deg),
    var(--glacier);
  box-shadow: 7px 7px 0 var(--red);
  overflow: hidden;
}

.guide-mini-poster i {
  position: absolute;
  left: -8px;
  right: -8px;
  bottom: 54px;
  height: 52px;
  background: var(--pine);
  clip-path: polygon(0 100%, 18% 32%, 36% 72%, 54% 18%, 76% 70%, 100% 30%, 100% 100%);
}

.guide-mini-poster i:nth-child(2) {
  bottom: 34px;
  height: 42px;
  background: var(--glacier);
  transform: translateX(7px);
}

.guide-mini-poster i:nth-child(3) {
  bottom: 0;
  height: 48px;
  background: var(--paper);
  clip-path: none;
}

.guide-mini-poster b {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  color: var(--red);
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.guide-copy {
  display: grid;
  gap: 28px;
}

.guide-plate-lab {
  position: relative;
  min-height: 188px;
  padding: 22px;
  border: 3px solid var(--ink);
  background:
    repeating-linear-gradient(90deg, transparent 0 14px, rgba(24, 35, 38, 0.08) 14px 15px),
    var(--sun);
  box-shadow: 8px 8px 0 var(--glacier);
  overflow: hidden;
}

.guide-plate-lab > div {
  position: absolute;
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 rgba(24, 35, 38, 0.24);
}

.lab-sun {
  left: 22px;
  top: 24px;
  width: 185px;
  height: 116px;
  background:
    radial-gradient(circle at 78% 28%, var(--paper) 0 24px, transparent 25px),
    repeating-conic-gradient(from 6deg at 78% 28%, rgba(251, 241, 216, 0.5) 0 8deg, transparent 8deg 14deg),
    var(--glacier);
}

.lab-mountain {
  left: 116px;
  top: 48px;
  width: 206px;
  height: 108px;
  background:
    linear-gradient(135deg, transparent 0 30%, var(--pine) 30.5% 55%, transparent 55.5%),
    linear-gradient(24deg, transparent 0 42%, var(--blue-dark) 42.5% 64%, transparent 64.5%),
    var(--red);
  transform: rotate(-2deg);
}

.lab-route {
  right: 22px;
  top: 28px;
  width: 205px;
  height: 126px;
  background:
    radial-gradient(circle at 16% 66%, var(--red) 0 7px, transparent 8px),
    radial-gradient(circle at 38% 46%, var(--sun) 0 7px, transparent 8px),
    radial-gradient(circle at 58% 63%, var(--glacier) 0 7px, transparent 8px),
    repeating-linear-gradient(116deg, transparent 0 20px, var(--ink) 20px 23px),
    var(--paper);
}

.guide-plate-lab p {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 17px;
  z-index: 3;
  margin: 0;
  width: fit-content;
  max-width: min(520px, calc(100% - 44px));
  padding: 7px 9px 6px;
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.guide-copy section {
  display: grid;
  grid-template-columns: minmax(150px, 0.32fr) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 32px);
  padding-bottom: 28px;
  border-bottom: 2px solid var(--line);
}

.guide-copy section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.guide-copy h2 {
  margin: 0;
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 0.88;
  text-transform: uppercase;
}

.guide-copy p {
  margin: 0 0 14px;
  color: #303c3e;
  font-weight: 560;
}

.guide-copy p:last-child {
  margin-bottom: 0;
}

.guide-copy code {
  padding: 0.06em 0.24em;
  background: rgba(127, 180, 217, 0.28);
  font-family: var(--body);
  font-weight: 850;
}

.reveal {
  opacity: 1;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--d, 0s);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ribbonMove {
  to {
    transform: translateX(-50%);
  }
}

@keyframes paperSettle {
  0% {
    opacity: 0;
    transform: translateY(30px) rotate(-4deg) scale(0.95);
  }
  68% {
    opacity: 1;
    transform: translateY(-4px) rotate(1.2deg) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

@keyframes inkSweep {
  0% {
    background-position: 140% 0, 0 0;
  }
  100% {
    background-position: -120% 0, 0 0;
  }
}

@keyframes pressPulse {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  42% {
    transform: translateY(5px) rotate(-0.45deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@media (max-width: 1050px) {
  .hero-grid,
  .desk-shell,
  .edition-grid {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    justify-self: center;
    width: min(460px, 84vw);
  }

  .hero-ticket {
    grid-column: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-spread {
    grid-template-columns: 1fr;
  }

  .plate-exploder {
    min-height: 320px;
  }

  .plate-sheet {
    width: 58%;
    height: 54%;
  }

  .method-card:nth-child(2n) {
    border-right: 0;
  }

  .method-card:nth-child(-n+2) {
    border-bottom: 3px solid var(--paper);
  }

  .desk-controls {
    position: relative;
    top: auto;
  }

  .commission-frame {
    width: min(520px, 100%);
  }

  .route-ledger {
    grid-template-columns: 1fr;
  }

  .route-card:nth-child(2) {
    margin-top: 0;
  }
}

@media (min-width: 761px) and (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.62fr);
    gap: 26px;
    align-items: start;
  }

  .hero-title {
    font-size: clamp(4.6rem, 10vw, 6.8rem);
  }

  .hero-lede {
    max-width: 560px;
    font-size: 1.02rem;
  }

  .hero-poster {
    width: min(330px, 100%);
    justify-self: end;
  }

  .hero-ticket {
    grid-column: 1 / 3;
    width: min(430px, 54vw);
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .site-header {
    position: relative;
    grid-template-columns: 1fr;
  }

  .brand {
    min-height: 68px;
    border-right: 0;
    border-bottom: 3px solid var(--ink);
  }

  .brand-stamp {
    width: 46px;
    height: 46px;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .site-nav a {
    min-width: 0;
    min-height: 48px;
    padding: 0 8px;
    border-left: 0;
    border-right: 2px solid var(--ink);
    font-size: 1.05rem;
  }

  .site-nav a:last-child {
    border-right: 0;
  }

  .hero {
    min-height: 0;
    padding-top: 34px;
  }

  .hero::after {
    right: -28vw;
    top: 40vh;
    width: 82vw;
    border-width: 12px;
  }

  .hero-grid,
  .section,
  .guide-hero,
  .guide-main {
    width: min(100% - 28px, 1240px);
  }

  .hero-grid {
    gap: 18px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy > .eyebrow {
    order: 1;
  }

  .hero-title {
    order: 2;
    font-size: clamp(3.8rem, 18vw, 5.05rem);
    max-width: 360px;
  }

  .hero-lede {
    order: 4;
    margin-top: 2px;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .plate-ledger {
    order: 5;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 4px;
    box-shadow: 5px 5px 0 var(--sun);
  }

  .plate-ledger li {
    padding: 10px 8px 8px;
  }

  .plate-ledger strong {
    font-size: 1.55rem;
  }

  .plate-ledger span {
    font-size: 0.58rem;
    letter-spacing: 0.06em;
  }

  .hero-actions,
  .desk-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions {
    order: 6;
    margin-top: 8px;
  }

  .button {
    width: 100%;
  }

  .hero-poster {
    order: 3;
    width: min(286px, 78vw);
    justify-self: start;
    transform: rotate(1deg);
  }

  .hero-poster figcaption {
    display: none;
    font-size: 0.72rem;
  }

  .hero-ticket {
    order: 7;
  }

  .section {
    padding-block: 56px;
  }

  .section-head {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
  }

  .section-head .button {
    grid-column: 1 / -1;
  }

  .section-number {
    width: 50px;
    height: 50px;
    font-size: 1.55rem;
    box-shadow: 4px 4px 0 var(--sun);
  }

  .section-head h2 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 12px;
  }

  .gallery-proofline {
    grid-template-columns: 1fr;
    margin-top: -14px;
    font-size: 0.66rem;
  }

  .gallery-proofline span {
    border-right: 0;
    border-bottom: 2px solid var(--ink);
    padding: 11px 12px;
  }

  .gallery-proofline span:last-child {
    border-bottom: 0;
  }

  .gallery-item,
  .gallery-item:nth-child(2n),
  .gallery-item:nth-child(4n+3),
  .gallery-item:nth-child(4n+1) {
    margin-top: 0;
    transform: none;
  }

  .gallery-item .poster-frame {
    width: 100%;
    justify-self: center;
  }

  .gallery-caption {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
  }

  .gallery-caption strong {
    font-size: 1.1rem;
  }

  .gallery-caption span {
    font-size: 0.68rem;
    line-height: 1.2;
  }

  .icon-button {
    justify-self: end;
  }

  .method-section,
  .edition-section {
    padding-inline: 14px;
  }

  .method-layout {
    grid-template-columns: 1fr;
    box-shadow: 8px 8px 0 var(--red);
  }

  .plate-exploder {
    min-height: 270px;
    box-shadow: 8px 8px 0 var(--blue-dark);
  }

  .plate-exploder p {
    font-size: 0.9rem;
  }

  .plate-sheet {
    width: 66%;
    height: 42%;
  }

  .method-card,
  .method-card:nth-child(2n),
  .method-card:nth-child(-n+2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 3px solid var(--paper);
  }

  .method-card:last-child {
    border-bottom: 0;
  }

  .desk-controls {
    padding: 18px;
  }

  .plate-options {
    gap: 7px;
  }

  .plate-options label > span {
    min-height: 62px;
    padding: 9px 8px 8px;
  }

  .plate-options b {
    font-size: 1.14rem;
  }

  .plate-options em {
    font-size: 0.58rem;
  }

  .press-bed {
    --loupe-left: 73%;
    --loupe-top: 43%;
    padding: 28px 16px 26px;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .plate-loupe {
    width: 94px;
    filter: drop-shadow(5px 7px 0 rgba(24, 35, 38, 0.26));
  }

  .plate-loupe-glass {
    border-width: 4px;
  }

  .plate-loupe-ticket {
    min-width: 78px;
    padding: 5px 6px 4px;
    font-size: 0.52rem;
  }

  .registration-tags {
    display: none;
  }

  .commission-frame {
    width: min(360px, 100%);
  }

  .route-card {
    min-height: 0;
  }

  .route-card dl,
  .edition-stats {
    grid-template-columns: 1fr;
  }

  .edition-stats div {
    min-height: 118px;
  }

  .site-footer {
    display: grid;
  }

  .site-footer nav {
    display: grid;
    gap: 10px;
  }

  .guide-paper {
    grid-template-columns: 1fr;
    padding: 20px;
    box-shadow: 8px 8px 0 var(--glacier);
  }

  .guide-hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
    box-shadow: 5px 5px 0 var(--red);
  }

  .guide-hero-proof span {
    min-height: 54px;
    border-bottom: 2px solid var(--ink);
    font-size: 0.62rem;
  }

  .guide-hero-proof span:nth-child(2n) {
    border-right: 0;
  }

  .guide-hero-proof span:nth-child(n+3) {
    border-bottom: 0;
  }

  .guide-index {
    position: relative;
    top: auto;
    border-right: 0;
    border-bottom: 3px solid var(--ink);
    padding: 0 0 18px;
  }

  .guide-index::after {
    width: 100%;
    height: 42px;
    margin-top: 18px;
    box-shadow: 4px 4px 0 var(--glacier);
  }

  .guide-swatch-strip {
    width: 100%;
    margin-top: 18px;
    box-shadow: 4px 4px 0 var(--glacier);
  }

  .guide-mini-poster {
    display: none;
  }

  .guide-plate-lab {
    min-height: 238px;
    padding: 16px;
  }

  .lab-sun {
    left: 16px;
    top: 18px;
    width: 150px;
    height: 104px;
  }

  .lab-mountain {
    left: 72px;
    top: 54px;
    width: 172px;
    height: 102px;
  }

  .lab-route {
    right: 16px;
    top: 108px;
    width: 156px;
    height: 92px;
  }

  .guide-plate-lab p {
    left: 16px;
    right: 16px;
    bottom: 12px;
    max-width: min(210px, calc(100% - 32px));
    font-size: 0.61rem;
  }

  .guide-copy section {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
