:root {
  --paper: #e9e2d4;
  --paper-bright: #f4eee3;
  --ink: #0b0b0a;
  --red: #d61b17;
  --red-dark: #9f100d;
  --blue: #1385c4;
  --violet: #4b31bb;
  --line: rgba(11, 11, 10, 0.25);
  --paper-line: rgba(233, 226, 212, 0.28);
  --page-pad: clamp(18px, 4vw, 64px);
  --max-width: 1480px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--red) var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background-color: var(--paper);
  background-image: url("assets/generated/paper-field.webp");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  color: var(--ink);
  font-family: "Arial Narrow", "Roboto Condensed", "Segoe UI", Arial, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: rgba(233, 226, 212, 0.7);
  content: "";
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 190;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(circle at 30% 20%, rgba(11, 11, 10, 0.07) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(0deg, rgba(11, 11, 10, 0.035) 0 1px, transparent 1px 4px);
  mix-blend-mode: multiply;
  opacity: 0.34;
  content: "";
}

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

a,
button {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

picture {
  display: block;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 500;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 900;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  box-shadow: inset 0 0 140px rgba(11, 11, 10, 0.1);
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  width: var(--scroll-progress, 0%);
  height: 4px;
  background: var(--red);
}

.cursor,
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 120ms ease;
}

.cursor {
  width: 38px;
  height: 38px;
  border: 3px solid #ff3028;
  background: rgba(244, 238, 227, 0.12);
  box-shadow:
    0 0 0 1px var(--ink),
    0 0 18px rgba(214, 27, 23, 0.72);
  transition: width 160ms ease, height 160ms ease, border-color 160ms ease, opacity 120ms ease;
}

.cursor-dot {
  width: 10px;
  height: 10px;
  border: 2px solid var(--ink);
  background: var(--paper-bright);
  box-shadow: 0 0 0 2px #ff3028;
}

.cursor.is-visible,
.cursor-dot.is-visible {
  opacity: 1;
}

.cursor.is-active {
  width: 62px;
  height: 62px;
  border-color: var(--paper-bright);
  background: rgba(214, 27, 23, 0.16);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  max-width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px var(--page-pad);
  border-bottom: 1px solid rgba(11, 11, 10, 0.24);
  background: rgba(233, 226, 212, 0.82);
  backdrop-filter: blur(10px);
}

.brand,
.site-nav,
.hero-actions,
.hero-index,
.carousel-controls,
.worlds-foot,
.cta-actions,
.site-footer > div {
  display: flex;
  align-items: center;
}

.brand {
  flex: 0 0 auto;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  padding: 2px;
  overflow: hidden;
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 1));
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong,
.brand-copy small,
.site-nav a,
.eyebrow,
.button,
.hero-index dt,
.world-status,
.world-no,
.world-author,
.capacity,
.world-stats dt,
.world-link,
.section-number,
.practice-row span,
.ticker,
.site-footer {
  font-weight: 950;
  text-transform: uppercase;
}

.brand-copy strong {
  font-size: 28px;
  line-height: 1;
  text-shadow: 2px 2px 0 red;
}

.brand-copy small {
  color: rgba(11, 11, 10, 0.6);
  font-size: 16px;
}

.site-nav {
  gap: clamp(14px, 2.4vw, 34px);
}

.site-nav a {
  position: relative;
  font-size: 24px;
  text-decoration: none;
}

.site-nav a::after,
.text-link::after,
.site-footer a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after,
.site-footer a:hover::after,
.site-footer a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-discord {
  color: var(--red);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 88svh;
  grid-template-columns: minmax(340px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(30px, 5vw, 84px);
  align-items: center;
  padding: 116px var(--page-pad) 54px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 92px calc(var(--page-pad) - 10px) 24px;
  z-index: -2;
  border: 1px solid var(--line);
  content: "";
}

.hero::after {
  position: absolute;
  right: -5vw;
  bottom: 9%;
  z-index: -1;
  width: min(39vw, 650px);
  height: 38px;
  background: var(--red);
  box-shadow: 0 74px 0 var(--red), 0 -74px 0 var(--red);
  content: "";
  opacity: 0.88;
  transform: rotate(-13deg);
}

.hero-copy {
  position: relative;
  z-index: 8;
  max-width: 690px;
  padding-left: clamp(8px, 2vw, 34px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 11px;
}

.hero h1,
.studio-heading h2,
.worlds-heading h2,
.team-heading h2,
.merch-heading h2,
.practice-title h2,
.cta-copy h2 {
  margin: 0;
  font-family: Impact, "Arial Black", "Arial Narrow", sans-serif;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 100%;
  font-size: clamp(76px, 10.8vw, 176px);
  line-height: 0.75;
  text-shadow: 5px 5px 0 var(--red), 10px 10px 0 rgba(11, 11, 10, 0.14);
}

.hero-lead {
  max-width: 610px;
  margin: 28px 0 0;
  font-size: clamp(18px, 1.8vw, 25px);
  font-weight: 820;
  line-height: 1.34;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 2px solid var(--ink);
  background: transparent;
  font-size: 12px;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--ink);
  color: var(--paper-bright);
  transform: translateY(-3px);
}

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

.button.primary:hover,
.button.primary:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
}

.hero-index {
  max-width: 520px;
  gap: 0;
  margin: 34px 0 0;
  border-block: 1px solid var(--ink);
}

.hero-index div {
  min-width: 0;
  flex: 1 1 0;
  padding: 12px 14px;
  border-right: 1px solid var(--ink);
}

.hero-index div:first-child {
  padding-left: 0;
}

.hero-index div:last-child {
  border-right: 0;
}

.hero-index dt {
  color: rgba(11, 11, 10, 0.55);
  font-size: 9px;
}

.hero-index dd {
  margin: 5px 0 0;
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 950;
}

.hero-posters {
  position: relative;
  z-index: 3;
  min-height: min(60vw, 640px);
  align-self: stretch;
}

.hero-poster {
  --parallax-x: 0px;
  --parallax-y: 0px;
  position: absolute;
  width: clamp(220px, 22vw, 370px);
  margin: 0;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--ink);
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0) rotate(var(--poster-angle));
  transform-origin: center;
  transition: filter 220ms ease, z-index 0s;
}

.hero-poster picture,
.hero-poster img {
  width: 100%;
}

.hero-poster img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.hero-poster figcaption,
.team-poster figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  color: var(--paper-bright);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(38px, 4.8vw, 82px);
  line-height: 0.8;
  text-shadow: 4px 4px 0 var(--red), 7px 7px 0 var(--ink);
  text-transform: uppercase;
}

.hero-poster:hover {
  z-index: 10;
  filter: contrast(1.08) saturate(1.08);
}

.poster-fenic {
  --poster-angle: -7deg;
  top: 10%;
  left: 1%;
  z-index: 2;
}

.poster-epsi {
  --poster-angle: 2deg;
  top: 0;
  left: 31%;
  z-index: 5;
}

.poster-epsi[data-secret-trigger] {
  cursor: pointer;
}

.poster-epsi[data-secret-trigger]:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 5px;
}

.secret-swap-active [data-secret-picture] img {
  animation: secret-image-swap 650ms steps(2, end);
}

@keyframes secret-image-swap {
  0% {
    filter: contrast(1) saturate(1);
  }
  35% {
    filter: contrast(2.2) saturate(0) invert(1);
  }
  65% {
    filter: contrast(1.8) saturate(1.6);
  }
  100% {
    filter: contrast(1) saturate(1);
  }
}

.poster-seany {
  --poster-angle: 7deg;
  top: 12%;
  right: 0;
  z-index: 3;
}

.hero-stamp {
  position: absolute;
  right: var(--page-pad);
  bottom: 35px;
  z-index: 12;
  display: grid;
  width: 210px;
  gap: 4px;
  padding: 13px;
  border: 2px solid var(--ink);
  background: rgba(233, 226, 212, 0.88);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-stamp strong {
  color: var(--red);
  font-size: 24px;
  line-height: 1;
}

.ticker {
  overflow: hidden;
  border-block: 2px solid var(--ink);
  background: var(--red);
  color: var(--paper-bright);
}

.ticker-track {
  --ticker-distance: 744px;
  --ticker-duration: 12s;
  display: flex;
  width: max-content;
  align-items: center;
  animation: ticker-move var(--ticker-duration) linear infinite;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.ticker-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.ticker span,
.ticker i {
  padding: 13px 22px;
  font-style: normal;
  white-space: nowrap;
}

.ticker span {
  font-size: 14px;
}

.ticker i {
  color: var(--ink);
  font-size: 24px;
}

@keyframes ticker-move {
  to {
    transform: translate3d(calc(-1 * var(--ticker-distance)), 0, 0);
  }
}

.studio-section,
.worlds-section,
.team-section,
.merch-section,
.practice-section,
.cta-section {
  position: relative;
  padding: clamp(86px, 10vw, 158px) var(--page-pad);
}

.studio-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
  gap: clamp(50px, 10vw, 170px);
  align-items: start;
  overflow: hidden;
}

.studio-section::before {
  position: absolute;
  right: -5vw;
  bottom: 10%;
  width: min(40vw, 600px);
  height: 22px;
  background: var(--red);
  box-shadow: 0 56px 0 var(--red);
  content: "";
  opacity: 0.86;
  transform: rotate(-9deg);
}

.section-number {
  position: absolute;
  top: 22px;
  right: var(--page-pad);
  color: rgba(11, 11, 10, 0.09);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(120px, 20vw, 300px);
  line-height: 1;
}

.studio-heading,
.studio-copy {
  position: relative;
  z-index: 2;
}

.studio-heading h2,
.worlds-heading h2,
.team-heading h2,
.merch-heading h2,
.practice-title h2,
.cta-copy h2 {
  font-size: clamp(48px, 7.3vw, 118px);
  line-height: 0.88;
}

.studio-copy {
  padding-top: 38px;
}

.studio-copy p {
  margin: 0 0 22px;
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 720;
  line-height: 1.48;
}

.studio-copy .statement {
  padding-left: 22px;
  border-left: 7px solid var(--red);
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 920;
  line-height: 1.17;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 38px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  color: var(--red);
  font-size: 22px;
}

.worlds-section {
  overflow: hidden;
  border-block: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper-bright);
}

.worlds-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(233, 226, 212, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(233, 226, 212, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
}

.worlds-heading,
.world-carousel,
.worlds-foot {
  position: relative;
  z-index: 1;
}

.worlds-heading {
  display: flex;
  max-width: var(--max-width);
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin: 0 auto 48px;
}

.worlds-heading h2 {
  max-width: 920px;
}

.carousel-controls {
  flex: 0 0 auto;
  gap: 10px;
}

.carousel-controls > span {
  min-width: 65px;
  margin-right: 8px;
  color: rgba(233, 226, 212, 0.62);
  font-size: 11px;
  font-weight: 900;
}

.carousel-button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--paper-bright);
  border-radius: 0;
  background: transparent;
  color: var(--paper-bright);
  font-size: 22px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  background: var(--paper-bright);
  color: var(--ink);
  transform: translateY(-2px);
}

.carousel-button:disabled {
  pointer-events: none;
  opacity: 0.34;
}

.world-carousel {
  display: grid;
  grid-auto-columns: min(920px, 82vw);
  grid-auto-flow: column;
  gap: 20px;
  max-width: var(--max-width);
  padding: 4px 0 28px;
  margin: 0 auto;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-snap-type: inline mandatory;
  cursor: grab;
  touch-action: pan-y;
}

.world-carousel.is-dragging {
  scroll-snap-type: none;
  cursor: grabbing;
}

.world-carousel.is-dragging .world-card {
  user-select: none;
}

.world-carousel img {
  pointer-events: none;
  -webkit-user-drag: none;
}

.world-carousel::-webkit-scrollbar {
  display: none;
}

.world-card {
  display: grid;
  min-height: 520px;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.85fr);
  border: 1px solid var(--paper-bright);
  background: var(--paper-bright);
  color: var(--ink);
  scroll-snap-align: start;
}

.world-image {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-right: 1px solid var(--ink);
  background: #292827;
}

.world-image::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 14px solid rgba(214, 27, 23, 0.86);
  border-top-width: 0;
  border-right-width: 0;
  content: "";
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 220ms ease;
}

.world-card:hover .world-image::after {
  opacity: 1;
}

.world-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(0.68) contrast(1.1);
  transition: filter 280ms ease, transform 420ms ease;
}

.world-card:hover .world-image img {
  filter: saturate(1) contrast(1.03);
  transform: scale(1.025);
}

.world-status,
.world-no {
  position: absolute;
  z-index: 2;
  padding: 8px 10px;
  font-size: 9px;
}

.world-status {
  top: 14px;
  left: 14px;
  background: var(--red);
  color: var(--paper-bright);
}

.world-no {
  right: 14px;
  bottom: 14px;
  background: var(--ink);
  color: var(--paper-bright);
}

.world-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(24px, 3vw, 44px);
}

.world-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.world-author {
  margin: 0 0 9px;
  color: var(--red);
  font-size: 10px;
}

.world-card h3 {
  margin: 0;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(36px, 4.1vw, 66px);
  font-weight: 950;
  line-height: 0.9;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.world-card.has-long-title h3 {
  font-size: clamp(30px, 3.1vw, 48px);
}

.capacity {
  flex: 0 0 auto;
  padding: 6px;
  border: 1px solid var(--ink);
  font-size: 8px;
}

.world-description {
  margin: 28px 0 24px;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 720;
  line-height: 1.44;
}

.world-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: auto 0 24px;
  border-block: 1px solid var(--ink);
}

.world-stats div {
  padding: 14px 12px;
  border-right: 1px solid var(--ink);
}

.world-stats div:first-child {
  padding-left: 0;
}

.world-stats div:last-child {
  border-right: 0;
}

.world-stats dt {
  color: rgba(11, 11, 10, 0.55);
  font-size: 9px;
}

.world-stats dd {
  margin: 5px 0 0;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 29px;
}

.world-link {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  background: var(--ink);
  color: var(--paper-bright);
  font-size: 11px;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.world-link span {
  color: var(--red);
  font-size: 20px;
}

.world-link:hover,
.world-link:focus-visible {
  background: var(--red);
  transform: translateY(-2px);
}

.world-link:hover span,
.world-link:focus-visible span {
  color: var(--paper-bright);
}

.worlds-foot {
  max-width: var(--max-width);
  justify-content: space-between;
  gap: 28px;
  margin: 18px auto 0;
  color: rgba(233, 226, 212, 0.62);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.worlds-foot p {
  margin: 0;
}

.drag-rule {
  display: flex;
  min-width: 260px;
  align-items: center;
  gap: 12px;
}

.drag-rule span {
  height: 1px;
  flex: 1;
  background: rgba(233, 226, 212, 0.5);
}

.drag-rule b {
  font-weight: inherit;
}

.team-section {
  padding-block: clamp(72px, 7vw, 104px);
  overflow: hidden;
}

.team-section::before {
  position: absolute;
  top: 9%;
  left: -7vw;
  width: 46vw;
  height: 24px;
  background: var(--red);
  box-shadow: 0 67px 0 var(--red);
  content: "";
  opacity: 0.9;
  transform: rotate(-11deg);
}

.team-heading {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 1120px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.5fr);
  gap: 50px;
  align-items: end;
  margin: 0 auto 36px;
}

.team-heading > p {
  margin: 0;
  padding-left: 20px;
  border-left: 6px solid var(--red);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 850;
  line-height: 1.35;
}

.team-grid {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 1000px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 28px);
  align-items: start;
  margin: 0 auto;
}

.team-poster {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  margin: 0;
  border: 2px solid var(--ink);
  background: var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  overflow: hidden;
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 140ms ease, box-shadow 180ms ease;
}

.team-poster:nth-child(2) {
  margin-top: 24px;
}

.team-poster:hover {
  box-shadow: 15px 15px 0 var(--red);
}

.team-poster picture {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.team-poster img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 22%;
  filter: contrast(1.04);
}

.team-poster figcaption {
  font-size: clamp(42px, 5vw, 76px);
}

.merch-section {
  isolation: isolate;
  overflow: hidden;
  border-top: 2px solid var(--ink);
  background: var(--red);
  color: var(--paper-bright);
}

.merch-section::before {
  position: absolute;
  top: 11%;
  right: -8vw;
  z-index: -1;
  width: 46vw;
  height: 34px;
  background: var(--ink);
  box-shadow: 0 82px 0 var(--ink), 0 164px 0 var(--ink);
  content: "";
  opacity: 0.92;
  transform: rotate(-12deg);
}

.merch-heading {
  display: grid;
  max-width: var(--max-width);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: clamp(42px, 8vw, 130px);
  align-items: end;
  margin: 0 auto 52px;
}

.merch-heading .eyebrow {
  color: var(--ink);
}

.merch-heading h2 {
  font-size: clamp(56px, 9vw, 142px);
  line-height: 0.8;
  text-shadow: 5px 5px 0 var(--ink);
}

.merch-intro {
  position: relative;
  z-index: 2;
  padding-left: 20px;
  border-left: 6px solid var(--ink);
}

.merch-intro p {
  margin: 0 0 24px;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 850;
  line-height: 1.36;
}

.merch-grid {
  display: grid;
  max-width: var(--max-width);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 36px);
  margin: 0 auto;
}

.merch-card {
  min-width: 0;
  border: 2px solid var(--ink);
  background: var(--paper-bright);
  box-shadow: 12px 12px 0 var(--ink);
  color: var(--ink);
}

.merch-card > a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.merch-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background: #ffffff;
}

.merch-image::after {
  position: absolute;
  right: -16%;
  bottom: 8%;
  width: 55%;
  height: 25px;
  background: var(--red);
  content: "";
  opacity: 0;
  transform: rotate(-16deg);
  transition: opacity 180ms ease;
}

.merch-card:hover .merch-image::after,
.merch-card:focus-within .merch-image::after {
  opacity: 0.92;
}

.merch-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 220ms ease, transform 320ms ease;
}

.merch-front {
  opacity: 1;
}

.merch-back {
  opacity: 0;
  transform: scale(1.02);
}

.merch-card.has-back-view:hover .merch-front,
.merch-card.has-back-view:focus-within .merch-front,
.merch-card.has-back-view.is-showing-back .merch-front {
  opacity: 0;
  transform: scale(0.985);
}

.merch-card.has-back-view:hover .merch-back,
.merch-card.has-back-view:focus-within .merch-back,
.merch-card.has-back-view.is-showing-back .merch-back {
  opacity: 1;
  transform: scale(1.035) rotate(-1deg);
}

.merch-card:not(.has-back-view):hover .merch-front,
.merch-card:not(.has-back-view):focus-within .merch-front {
  transform: scale(1.035) rotate(-1deg);
}

.merch-index,
.merch-availability {
  position: absolute;
  z-index: 3;
  padding: 8px 10px;
  font-size: 9px;
  font-weight: 950;
  text-transform: uppercase;
}

.merch-index {
  top: 14px;
  left: 14px;
  background: var(--ink);
  color: var(--paper-bright);
}

.merch-availability {
  top: 14px;
  right: 14px;
  border: 1px solid var(--ink);
  background: var(--paper-bright);
  color: var(--ink);
}

.merch-availability.is-sold-out {
  border-color: var(--red);
  background: var(--red);
  color: var(--paper-bright);
}

.merch-body {
  padding: clamp(22px, 3vw, 38px);
}

.merch-body > p {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.merch-body h3 {
  min-height: 1.8em;
  margin: 0;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(32px, 4.2vw, 66px);
  font-weight: 950;
  line-height: 0.9;
  text-transform: uppercase;
}

.merch-buy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 26px;
  padding-top: 15px;
  border-top: 2px solid var(--ink);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.merch-buy-row strong {
  font-size: clamp(18px, 2vw, 27px);
}

.merch-buy-row span {
  color: var(--red);
}

.merch-foot {
  display: flex;
  max-width: var(--max-width);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 40px auto 0;
  color: rgba(244, 238, 227, 0.78);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.merch-foot p {
  margin: 0;
}

.merch-foot .text-link {
  color: var(--paper-bright);
}

.merch-foot .text-link::after {
  background: var(--ink);
}

.merch-foot .text-link span {
  color: var(--ink);
}

.practice-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 130px);
  border-top: 2px solid var(--ink);
  background: var(--paper-bright);
}

.practice-title {
  position: sticky;
  top: 40px;
  align-self: start;
}

.practice-title h2 {
  color: var(--red);
}

.practice-list {
  border-top: 2px solid var(--ink);
}

.practice-row {
  display: grid;
  grid-template-columns: 55px minmax(190px, 0.66fr) minmax(240px, 1fr);
  gap: 20px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 2px solid var(--ink);
}

.practice-row span {
  color: var(--red);
  font-size: 12px;
}

.practice-row h3,
.practice-row p {
  margin: 0;
}

.practice-row h3 {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 0.95;
  text-transform: uppercase;
}

.practice-row p {
  font-size: 17px;
  font-weight: 720;
  line-height: 1.45;
}

.cta-section {
  isolation: isolate;
  display: grid;
  min-height: 640px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: end;
  overflow: hidden;
  background: var(--red);
  color: var(--paper-bright);
}

.cta-section::before,
.cta-section::after {
  position: absolute;
  z-index: -1;
  background: var(--ink);
  content: "";
}

.cta-section::before {
  top: 18%;
  right: -6%;
  width: 62%;
  height: 42px;
  box-shadow: 0 98px 0 var(--ink), 0 196px 0 var(--ink);
  transform: rotate(-12deg);
}

.cta-section::after {
  right: 12%;
  bottom: -22%;
  width: 260px;
  height: 460px;
  transform: rotate(18deg);
}

.cta-mark {
  position: absolute;
  top: 12px;
  right: 3vw;
  z-index: -1;
  color: rgba(233, 226, 212, 0.18);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(190px, 35vw, 560px);
  line-height: 1;
}

.cta-copy,
.cta-actions {
  position: relative;
  z-index: 2;
}

.cta-copy {
  max-width: 900px;
}

.cta-copy .eyebrow {
  color: var(--ink);
}

.cta-copy h2 {
  font-size: clamp(74px, 12vw, 190px);
  line-height: 0.75;
}

.cta-copy > p:last-child {
  max-width: 660px;
  margin: 28px 0 0;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 850;
  line-height: 1.35;
}

.cta-actions {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.button.light {
  border-color: var(--paper-bright);
  background: var(--paper-bright);
  color: var(--ink);
}

.button.light:hover,
.button.light:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper-bright);
}

.button.outline-light {
  border-color: var(--paper-bright);
  color: var(--paper-bright);
}

.button.outline-light:hover,
.button.outline-light:focus-visible {
  background: var(--paper-bright);
  color: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px var(--page-pad);
  background: var(--ink);
  color: var(--paper-bright);
  font-size: 10px;
}

.site-footer p {
  margin: 0;
  color: rgba(233, 226, 212, 0.58);
  text-align: center;
}

.site-footer > div {
  justify-content: flex-end;
  gap: 22px;
}

.site-footer a {
  position: relative;
  text-decoration: none;
}

.footer-brand {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 26px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (pointer: fine) {
  html.has-custom-cursor body,
  html.has-custom-cursor a,
  html.has-custom-cursor button {
    cursor: none;
  }

  html.has-custom-cursor .world-carousel {
    cursor: none;
  }
}

@media (max-width: 1180px) {
  .hero {
    min-height: auto;
    grid-template-columns: minmax(300px, 0.7fr) minmax(440px, 1.3fr);
  }

  .hero-posters {
    min-height: 610px;
  }

  .hero-poster {
    width: clamp(210px, 26vw, 310px);
  }

  .hero-stamp {
    display: none;
  }

  .world-carousel {
    grid-auto-columns: min(820px, 84vw);
  }

  .world-card {
    grid-template-columns: minmax(0, 1fr) 340px;
  }
}

@media (max-width: 880px) {
  .cursor,
  .cursor-dot {
    display: none;
  }

  .site-header {
    align-items: flex-start;
    gap: 18px;
    padding: 14px 16px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .site-nav {
    max-width: 58vw;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 9px 15px;
  }

  .site-nav a {
    font-size: 10px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 112px 16px 34px;
  }

  .hero::before {
    inset: 92px 10px 18px;
  }

  .hero-copy {
    padding: 0 14px;
  }

  .hero h1 {
    font-size: clamp(68px, 21vw, 132px);
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-posters {
    min-height: 570px;
  }

  .hero-poster {
    width: min(40vw, 280px);
    box-shadow: 7px 7px 0 var(--ink);
  }

  .poster-fenic {
    top: 9%;
    left: 3%;
  }

  .poster-epsi {
    top: 0;
    left: 31%;
  }

  .poster-seany {
    top: 11%;
    right: 2%;
  }

  .studio-section,
  .team-heading,
  .merch-heading,
  .practice-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .studio-copy {
    padding-top: 0;
  }

  .worlds-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .world-carousel {
    grid-auto-columns: min(660px, 86vw);
  }

  .world-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .world-image {
    min-height: 330px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .world-image img {
    min-height: 330px;
    aspect-ratio: 16 / 10;
  }

  .worlds-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .drag-rule {
    width: 100%;
  }

  .team-heading > p {
    max-width: 600px;
  }

  .merch-intro {
    max-width: 620px;
  }

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

  .team-poster {
    box-shadow: 6px 6px 0 var(--ink);
  }

  .practice-title {
    position: relative;
    top: auto;
  }

  .practice-row {
    grid-template-columns: 42px minmax(170px, 0.65fr) minmax(200px, 1fr);
  }

  .cta-section {
    min-height: 620px;
    align-items: end;
  }

  .cta-actions {
    width: min(100%, 430px);
    align-items: stretch;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .site-footer p {
    text-align: left;
  }

  .site-footer > div {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .brand-copy small,
  .site-nav a:nth-child(1),
  .site-nav a:nth-child(3) {
    display: none;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-index div {
    padding: 10px 8px;
  }

  .hero-index dd {
    font-size: 13px;
  }

  .hero-posters {
    min-height: 190px;
  }

  .hero-poster {
    width: 32vw;
  }

  .hero-poster figcaption {
    right: 7px;
    bottom: 8px;
    left: 7px;
    font-size: clamp(24px, 9vw, 45px);
    text-shadow: 2px 2px 0 var(--red), 4px 4px 0 var(--ink);
  }

  .studio-section,
  .worlds-section,
  .team-section,
  .merch-section,
  .practice-section,
  .cta-section {
    padding-inline: 16px;
  }

  .studio-heading h2,
  .worlds-heading h2,
  .team-heading h2,
  .merch-heading h2,
  .practice-title h2 {
    font-size: 46px;
  }

  .studio-copy .statement {
    font-size: 23px;
  }

  .world-carousel {
    grid-auto-columns: 90vw;
  }

  .world-image,
  .world-image img {
    min-height: 250px;
  }

  .world-body {
    padding: 22px;
  }

  .world-card h3 {
    font-size: 38px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    width: min(100%, 290px);
  }

  .team-poster,
  .team-poster:nth-child(2) {
    margin-top: 0;
  }

  .team-poster figcaption {
    font-size: 62px;
  }

  .merch-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .merch-card {
    box-shadow: 7px 7px 0 var(--ink);
  }

  .merch-body h3 {
    min-height: 0;
    font-size: 39px;
  }

  .merch-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .practice-row {
    grid-template-columns: 34px 1fr;
  }

  .practice-row p {
    grid-column: 2;
  }

  .cta-copy h2 {
    font-size: clamp(70px, 22vw, 110px);
  }

  .cta-section::before {
    width: 90%;
  }

  .site-footer > div {
    flex-wrap: wrap;
  }
}

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

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

  .ticker-track {
    animation: none;
  }
}
