:root {
  --ink: #161511;
  --paper: #F4F1EC;
  --accent: #FF3B00;
  --mq: 18s;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
}

body {
  font-family: 'Space Mono', monospace;
  color: var(--ink);
  overflow-x: hidden;
}

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

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

@keyframes mq {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes eq1 { 0%, 100% { height: 30%; } 50% { height: 95%; } }
@keyframes eq2 { 0%, 100% { height: 80%; } 50% { height: 25%; } }
@keyframes eq3 { 0%, 100% { height: 50%; } 50% { height: 100%; } }

/* Progress bar */
.progress-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 5px;
  z-index: 90;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
}

/* Hero */
.hero-wrap {
  height: 200vh;
  position: relative;
  margin-bottom: -100vh;
}
.hero-sticky-outer {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 24px 4vw;
  overflow: hidden;
}
.hero-top {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 12px;
}
.hero-sticky {
  transform-origin: center 40%;
  position: relative;
}
.hero-title {
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-size: clamp(80px, 17.5vw, 280px);
  line-height: 0.86;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
.hero-title .reveal {
  display: block;
}
.hero-title .outline {
  margin-left: 7vw;
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}
.accent-dot {
  color: var(--accent);
  -webkit-text-stroke: 0px;
}
.hero-sub {
  margin: 4vh 0 0 7vw;
  max-width: 500px;
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.6;
}
.hero-sticker {
  position: absolute;
  top: -4vh;
  right: 4vw;
  width: clamp(300px, 26vw, 480px);
  rotate: 5deg;
  transition: rotate 0.5s cubic-bezier(0.22, 0.9, 0.24, 1);
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  text-transform: uppercase;
  padding-left: 152px;
}
.accent-text {
  color: var(--accent);
}

/* Exhibit cards (receipt/screenshot frames) */
.exhibit-card {
  border: 2px solid var(--ink);
  background: #fff;
  padding: 12px;
  box-shadow: 8px 8px 0 rgba(22, 21, 17, 0.15);
  position: relative;
}
.tape {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  width: 90px;
  height: 28px;
  background: linear-gradient(105deg, rgba(244, 220, 130, 0.45), rgba(233, 203, 110, 0.8));
  backdrop-filter: blur(0.5px);
  clip-path: polygon(2% 12%, 7% 0, 94% 4%, 100% 16%, 98% 88%, 92% 100%, 5% 96%, 0 86%);
  box-shadow: 0 1px 4px rgba(22, 21, 17, 0.18);
}
.exhibit-image {
  overflow: hidden;
  background: #0b0b0b;
}
.exhibit-image img {
  width: 100%;
  height: auto;
  display: block;
}
.exhibit-caption {
  font-size: 12px;
  text-transform: uppercase;
  padding-top: 8px;
}

/* Marquee */
.marquee {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: mq var(--mq) linear infinite;
  font-family: 'Anton', sans-serif;
  font-size: clamp(24px, 3vw, 44px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.marquee-track span {
  padding-right: 2vw;
}

/* Section base */
.content {
  position: relative;
  z-index: 2;
}
.grid-bg {
  background: var(--paper);
  background-image: linear-gradient(to right, rgba(22, 21, 17, 0.07) 1px, transparent 1px);
  background-size: 8.333vw 100%;
  box-sizing: border-box;
  position: relative;
}
.chapter-label {
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 6vh;
}

/* Ch 01 About */
.section {
  padding: 18vh 4vw;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 6vw;
  align-items: start;
}
.about-title {
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 5vw, 82px);
  line-height: 1.04;
  text-transform: uppercase;
  text-wrap: pretty;
}
.body-text {
  margin: 6vh 0 0;
  max-width: 520px;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.7;
}
.live-chip {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  margin-top: 7vh;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  padding: 14px 18px;
}
.eq {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 16px;
}
.eq span {
  width: 3px;
  background: var(--accent);
}
.eq span:nth-child(1) { animation: eq1 0.8s ease-in-out infinite; }
.eq span:nth-child(2) { animation: eq2 0.7s ease-in-out infinite; }
.eq span:nth-child(3) { animation: eq3 0.9s ease-in-out infinite; }
.live-chip-text {
  font-size: 12px;
  text-transform: uppercase;
}
.live-chip-text .dim {
  color: rgba(244, 241, 236, 0.55);
}
.exhibit-a {
  position: absolute;
  left: 45vw;
  top: 64vh;
  width: clamp(300px, 26vw, 460px);
  rotate: -6deg;
  z-index: 3;
}
.exhibit-a .tape {
  width: 80px;
  height: 26px;
}
.portrait-frame {
  border: 2px solid var(--ink);
  position: relative;
}
.zoom-box {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.zoom-inner {
  width: 100%;
  height: 100%;
  transform: scale(1.18);
  will-change: transform;
}
.zoom-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portrait-caption {
  font-size: 12px;
  text-transform: uppercase;
  padding: 10px 14px;
  border-top: 2px solid var(--ink);
  display: flex;
  justify-content: space-between;
}

/* Ch 02 Beliefs */
.beliefs-section {
  padding: 16vh 4vw;
}
.ch-number-bg {
  position: absolute;
  top: 4vh;
  right: 2vw;
  font-family: 'Anton', sans-serif;
  font-size: clamp(160px, 24vw, 400px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(22, 21, 17, 0.15);
  line-height: 1;
  pointer-events: none;
}
.beliefs-list {
  border-top: 2px solid var(--ink);
}
.belief-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 4vh 8px;
  border-bottom: 2px solid var(--ink);
  transition: background 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
}
.belief-row:hover {
  background: var(--ink);
  color: var(--paper);
  padding-left: 24px;
}
.belief-num {
  font-size: 14px;
  color: var(--accent);
}
.belief-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(32px, 4.6vw, 76px);
  text-transform: uppercase;
  line-height: 1;
}
.belief-desc {
  font-size: 13px;
  text-transform: uppercase;
  margin-top: 12px;
  opacity: 0.6;
}
.obsession-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 8vh;
}
.obsession-chip {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  border: 2px solid var(--ink);
  background: var(--accent);
  color: var(--paper);
  padding: 14px 18px;
}
.obsession-chip span:first-child {
  font-size: 12px;
  text-transform: uppercase;
}
.obsession-text {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
}
.exhibit-b {
  position: absolute;
  right: 5vw;
  top: 24%;
  width: clamp(300px, 25vw, 440px);
  rotate: 5deg;
  z-index: 3;
}
.exhibit-b .tape {
  left: auto;
  right: 24px;
  transform: rotate(4deg);
  width: 80px;
  height: 26px;
}

/* Ch 03 Experience */
.experience-section {
  padding: 0 4vw 18vh;
}
.exp-table {
  border-top: 2px solid var(--ink);
}
.exp-row {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 32px 8px;
  border-bottom: 2px solid var(--ink);
}
.exp-row.future {
  color: rgba(22, 21, 17, 0.45);
}
.exp-year {
  font-size: 14px;
}
.exp-company {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 3.4vw, 52px);
  text-transform: uppercase;
}
.exp-role {
  font-size: 14px;
  text-transform: uppercase;
}
.exp-cta {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--accent);
}
.exp-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-top: 6vh;
}
.ask-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 640px;
}
.ask-label {
  font-size: 12px;
  text-transform: uppercase;
  align-self: center;
  margin-right: 8px;
}
.tag {
  border: 2px solid var(--ink);
  padding: 8px 14px;
  font-size: 13px;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}
.tag:hover {
  background: var(--ink);
  color: var(--paper);
}
.exhibit-c {
  position: absolute;
  right: 10vw;
  bottom: 2vh;
  width: clamp(280px, 23vw, 420px);
  rotate: -4deg;
  z-index: 3;
}
.exhibit-c .tape {
  left: 30px;
  transform: rotate(-5deg);
  width: 70px;
  height: 24px;
}

/* Contact */
.contact {
  background: var(--ink);
  color: var(--paper);
  padding: 16vh 4vw 6vh;
  box-sizing: border-box;
}
.contact-label {
  font-size: 13px;
  text-transform: uppercase;
  color: rgba(244, 241, 236, 0.55);
  margin-bottom: 6vh;
}
.contact-cta {
  display: block;
  color: var(--paper);
  font-family: 'Anton', sans-serif;
  font-size: clamp(64px, 14vw, 220px);
  line-height: 0.88;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.contact-cta:hover {
  color: var(--accent);
}
.contact-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12vh;
  padding-top: 24px;
  border-top: 2px solid rgba(244, 241, 236, 0.3);
  font-size: 13px;
  text-transform: uppercase;
}
.contact-footer a {
  color: var(--paper);
  transition: color 0.2s ease;
}
.contact-footer a:hover {
  color: var(--accent);
}
.social-links {
  display: flex;
  gap: 32px;
}
.dim-footer {
  color: rgba(244, 241, 236, 0.55);
}

@media (max-width: 780px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .hero-top,
  .hero-bottom {
    flex-wrap: wrap;
    gap: 8px 16px;
    padding-left: 0;
  }
  .hero-sticker {
    width: clamp(160px, 42vw, 280px);
    top: 1vh;
  }
  .hero-title .outline {
    margin-left: 3vw;
  }
  .exp-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .exp-footer {
    flex-wrap: wrap;
  }
  .section,
  .beliefs-section {
    padding: 12vh 6vw;
  }
  .experience-section {
    padding: 0 6vw 12vh;
  }
  .contact {
    padding: 12vh 6vw 6vh;
  }
  .obsession-row {
    margin-top: 5vh;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(52px, 15vw, 280px);
  }
  .belief-title {
    font-size: clamp(24px, 8vw, 76px);
  }
  .contact-cta {
    font-size: clamp(42px, 13vw, 220px);
  }
  .hero-sticker {
    width: clamp(130px, 46vw, 220px);
  }
  .social-links {
    gap: 20px;
  }
}

.hero-title,
.belief-title,
.about-title,
.contact-cta,
.exp-company {
  overflow-wrap: break-word;
}

/* ═══════════════════════════════════════════════════════════════
   PRESS PASS — cheap-print system (misregistration, stamps, grain)
   the accent ink drifts a few px; a hand on the page re-registers it
   ═══════════════════════════════════════════════════════════════ */

:root {
  --ease-reg: cubic-bezier(0.22, 0.9, 0.24, 1);   /* snap into register */
  --ease-thunk: cubic-bezier(0.34, 1.45, 0.5, 1); /* rubber stamp landing */
  --treg: 0.42s var(--ease-reg);
  --mrx: 3px;
  --mry: -2px; /* default drift of the accent pass */
}

.defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* registration-crosshair cursor: ink mark, drifted accent ring */
body {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 26 26'%3E%3Ccircle cx='14' cy='12' r='6.5' fill='none' stroke='%23FF3B00' stroke-width='1.6' opacity='.9'/%3E%3Ccircle cx='13' cy='13' r='6.5' fill='none' stroke='%23161511' stroke-width='1.6'/%3E%3Cpath d='M13 1v7M13 18v7M1 13h7M18 13h7' stroke='%23161511' stroke-width='1.6'/%3E%3C/svg%3E") 13 13, auto;
}
a, button {
  cursor: pointer;
}

html {
  scrollbar-color: var(--ink) var(--paper);
}

/* paper grain — fixed over everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.09 0 0 0 0 0.08 0 0 0 0 0.07 0 0 0 0.09 0'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── misregistration: text printed twice. the accent pass (::before)
   drifts; the ink pass (inner span) is true. ─────────────────── */
.mr {
  position: relative;
}
.mr::before {
  content: attr(data-t);
  content: attr(data-t) / ""; /* hide the ghost pass from screen readers */
  position: absolute;
  inset: 0;
  color: var(--accent);
  mix-blend-mode: multiply;
  transform: translate(var(--mrx), var(--mry)) rotate(0.3deg);
  transition: transform var(--treg);
  pointer-events: none;
}
.mr > span {
  position: relative;
}

/* big type drifts further */
.hero-title { --mrx: 6px; --mry: -4px; }
.contact-cta { --mrx: 5px; --mry: -4px; }

/* each CTA line is a block so the ghost pass aligns despite the
   negative leading (abs positioning inside an inline box drifts) */
.contact-cta .mr {
  display: block;
}

/* the outline line: ghost is an accent stroke */
.hero-title .outline.mr::before {
  color: transparent;
  -webkit-text-stroke: 2px var(--accent);
}

/* on the ink ground multiply would vanish — print it straight */
.contact-cta .mr::before {
  mix-blend-mode: normal;
  opacity: 0.9;
}

/* a hand on the page: every pass snaps into register */
.hero-title:hover .mr::before,
.belief-row:hover .mr::before,
.exp-row:hover .mr::before,
.contact-cta:hover .mr::before,
.contact-cta:focus-visible .mr::before {
  transform: translate(0, 0) rotate(0deg);
}

/* ── exhibits: taped up crooked, straighten under the hand ───── */
.exhibit-card {
  transition: rotate 0.5s var(--ease-reg);
}
.exhibit-card:hover,
.hero-sticker:hover {
  rotate: 0deg;
}

.stamp-verified {
  position: absolute;
  top: -12px;
  right: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--paper);
  border: 3px double var(--accent);
  border-radius: 3px;
  padding: 0.35em 0.6em;
  filter: url(#roughen2);
  opacity: 0;
  transform: scale(1.6) rotate(-14deg);
  transition: opacity 0.18s ease, transform 0.3s var(--ease-thunk);
  pointer-events: none;
  z-index: 4;
}
.exhibit-card:hover .stamp-verified,
.hero-sticker:hover .stamp-verified {
  opacity: 1;
  transform: scale(1) rotate(-7deg);
}

/* ── press furniture ─────────────────────────────────────────── */
.chapter-label {
  display: inline-block;
  border: 2px solid var(--ink);
  padding: 0.45em 0.9em;
  letter-spacing: 0.14em;
  transform: rotate(-1.2deg);
  filter: url(#roughen2);
}
.contact-label {
  display: inline-block;
  border: 2px solid rgba(244, 241, 236, 0.5);
  padding: 0.45em 0.9em;
  letter-spacing: 0.14em;
  transform: rotate(-1.2deg);
  filter: url(#roughen2);
}
.tag {
  filter: url(#roughen2);
}
.obsession-chip {
  filter: url(#roughen2);
}

/* halftone band — printed behind the hero title */
.hero-sticky-outer::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 32%;
  height: 40%;
  background-image: radial-gradient(var(--accent) 1.5px, transparent 1.8px);
  background-size: 9px 9px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 62%, transparent),
                      linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 62%, transparent),
                      linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-composite: source-in;
          mask-composite: intersect;
  mix-blend-mode: multiply;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

/* crop / trim marks at section corners */
.grid-bg::after,
.hero-sticky-outer::after {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  opacity: 0.45;
  background-repeat: no-repeat;
  background-image:
    linear-gradient(var(--ink), var(--ink)), linear-gradient(var(--ink), var(--ink)),
    linear-gradient(var(--ink), var(--ink)), linear-gradient(var(--ink), var(--ink)),
    linear-gradient(var(--ink), var(--ink)), linear-gradient(var(--ink), var(--ink)),
    linear-gradient(var(--ink), var(--ink)), linear-gradient(var(--ink), var(--ink));
  background-size: 18px 2px, 18px 2px, 18px 2px, 18px 2px, 2px 18px, 2px 18px, 2px 18px, 2px 18px;
  background-position:
    left 0 top 10px, right 0 top 10px, left 0 bottom 10px, right 0 bottom 10px,
    left 10px top 0, right 10px top 0, left 10px bottom 0, right 10px bottom 0;
}

/* control strip + barcode — press furniture in the colophon */
.press-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 12vh;
}
.control-strip {
  display: flex;
  align-items: center;
  gap: 4px;
}
.control-strip .cs {
  width: 20px;
  height: 20px;
  display: block;
}
.cs-1 { background: var(--accent); }
.cs-2 { background: var(--paper); }
.cs-3 { background: #B22A00; }
.cs-4 { background: #FFC9B8; }
.cs-5 {
  background-image: radial-gradient(var(--paper) 1.1px, transparent 1.3px);
  background-size: 5px 5px;
  border: 1px solid var(--paper);
  box-sizing: border-box;
}
.cs-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, 0.55);
  margin-left: 10px;
}
.barcode {
  width: 110px;
  text-align: center;
  color: var(--paper);
  opacity: 0.85;
}
.barcode svg {
  width: 100%;
  height: 30px;
  display: block;
}
.barcode rect {
  fill: currentColor;
}
.barcode span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.18em;
  margin-top: 4px;
  white-space: nowrap;
}
.contact .contact-footer {
  margin-top: 28px;
}

/* ── portrait: printed in one ink. drop any photo in and it comes
   out grayscale + halftone + a whisper of the accent wash. ───── */
.zoom-box {
  position: relative;
}
.zoom-inner img {
  filter: grayscale(1) contrast(1.08) brightness(1.02);
}
.zoom-box::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--accent);
  mix-blend-mode: multiply;
  opacity: 0.1;
  pointer-events: none;
}
.zoom-box::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: radial-gradient(rgba(22, 21, 17, 0.5) 0.9px, transparent 1.2px);
  background-size: 6px 6px;
  mix-blend-mode: multiply;
  opacity: 0.45;
  pointer-events: none;
}

/* ── press choreography: the hero PRINTS on load. pass 1 (ink)
   sweeps the sheet in behind a drum bar; pass 2 lands the accent
   ink misregistered; then the sticker is slapped on by hand. ─── */
.drumbar {
  position: absolute;
  top: -3%;
  bottom: -3%;
  left: -20px;
  width: 14px;
  opacity: 0;
  z-index: 5;
  pointer-events: none;
}
.drumbar-ink {
  background: var(--ink);
  box-shadow: 0 0 18px 2px rgba(22, 21, 17, 0.4);
}
.drumbar-accent {
  background: var(--accent);
  box-shadow: 0 0 18px 2px rgba(255, 59, 0, 0.5);
}

.hero-sticky-outer.printing .hero-sticky {
  clip-path: inset(-40% 103% -10% -5%);
}
.hero-sticky-outer.printing.p1 .hero-sticky {
  animation: press-sweep 0.95s cubic-bezier(0.6, 0.05, 0.4, 0.95) forwards;
}
@keyframes press-sweep {
  to { clip-path: inset(-40% -5% -10% -5%); }
}

/* the header/footer rows print with the sheet */
.hero-sticky-outer.printing .hero-top,
.hero-sticky-outer.printing .hero-bottom {
  opacity: 0;
}
.hero-sticky-outer.printing.p1 .hero-top,
.hero-sticky-outer.printing.p1 .hero-bottom {
  animation: ink-fade 0.6s ease 0.3s backwards;
  opacity: 1;
}

/* pass 2: the accent ghosts + halftone band land off the drum */
.hero-sticky-outer.printing:not(.p2) .hero-title .mr::before,
.hero-sticky-outer.printing:not(.p2)::before {
  opacity: 0;
}
.hero-sticky-outer.printing.p2 .hero-title .mr::before {
  animation: ink-land 0.5s var(--ease-reg) 0.15s backwards;
}
.hero-sticky-outer.printing.p2::before {
  animation: ink-fade 0.7s ease 0.1s backwards;
}
@keyframes ink-land {
  from {
    opacity: 0;
    transform: translate(calc(var(--mrx) - 20px), var(--mry));
  }
}
@keyframes ink-fade {
  from { opacity: 0; }
}

.hero-sticky-outer.printing.p1 .drumbar-ink {
  animation: bar-sweep 0.95s cubic-bezier(0.6, 0.05, 0.4, 0.95) forwards;
}
.hero-sticky-outer.printing.p2 .drumbar-accent {
  animation: bar-sweep 0.95s cubic-bezier(0.6, 0.05, 0.4, 0.95) forwards;
}
@keyframes bar-sweep {
  0%   { opacity: 0.85; transform: translateX(0); }
  96%  { opacity: 0.85; }
  100% { opacity: 0; transform: translateX(104vw); }
}

/* hand-applied after the print: the exhibit sticker thunks on */
.hero-sticky-outer.printing .hero-sticker {
  opacity: 0;
}
.hero-sticky-outer.printing.done .hero-sticker {
  opacity: 1;
  animation: thunk 0.42s var(--ease-thunk) 0.05s backwards;
}
@keyframes thunk {
  from {
    opacity: 0;
    scale: 1.5;
  }
}

/* small screens: exhibits leave the wall and join the flow, full width */
@media (max-width: 780px) {
  .exhibit-a,
  .exhibit-b,
  .exhibit-c {
    position: static;
    width: 100%;
    max-width: 460px;
    margin-top: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mr::before,
  .exhibit-card,
  .hero-sticker,
  .stamp-verified {
    transition: none !important;
  }
  .drumbar {
    display: none;
  }
  .hero-sticky-outer.printing .hero-sticky {
    clip-path: none;
    animation: none;
  }
  .hero-sticky-outer.printing .hero-top,
  .hero-sticky-outer.printing .hero-bottom,
  .hero-sticky-outer.printing .hero-sticker,
  .hero-sticky-outer.printing .hero-title .mr::before,
  .hero-sticky-outer.printing::before {
    opacity: 1;
    animation: none;
  }
  .hero-sticky-outer.printing::before {
    opacity: 0.4;
  }
}
