:root {
  --ink: #11120f;
  --cream: #fff4c8;
  --paper: #fff9df;
  --green: #20c96a;
  --pink: #ff7eaa;
  --yellow: #ffe16f;
  --blue: #9bdff0;
  --brown: #b95f3d;
  --red: #ee1f25;
  --display: "Bangers", Impact, sans-serif;
  --hand: "Permanent Marker", "Comic Sans MS", cursive;
  --utility: "Courier Prime", "Courier New", monospace;
  --hard-shadow: 8px 9px 0 var(--ink);
  --page-width: 520px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--green);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--green);
  font-family: var(--utility);
  line-height: 1.48;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

button,
input,
a {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

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

::selection {
  color: var(--cream);
  background: var(--ink);
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 50%;
  z-index: 999;
  padding: 12px 16px;
  color: var(--cream);
  background: var(--ink);
  transform: translate(-50%, -180%);
  transition: transform 160ms ease-out;
}

.skip-link:focus {
  transform: translate(-50%, 0);
}

.site-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--page-width);
  min-height: 100vh;
  margin: 0 auto;
  background: var(--cream);
  box-shadow: 0 0 48px rgb(17 18 15 / 24%);
}

.desktop-curtain {
  position: fixed;
  inset: 0;
  display: none;
  overflow: hidden;
  color: var(--ink);
  background-color: var(--green);
  background-image: 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='3' cy='3' r='2' fill='%2311120f' fill-opacity='.22'/%3E%3C/svg%3E");
  font-family: var(--display);
  pointer-events: none;
}

.desktop-curtain span {
  position: absolute;
  writing-mode: vertical-rl;
  font-size: clamp(5rem, 10vw, 10rem);
  line-height: 0.8;
  opacity: 0.14;
}

.desktop-curtain span:nth-child(1) { left: 3vw; top: 4vh; }
.desktop-curtain span:nth-child(2) { right: 2vw; top: 7vh; }
.desktop-curtain span:nth-child(3) { left: 4vw; bottom: 3vh; writing-mode: horizontal-tb; }

.topbar {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 90;
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  width: min(100%, var(--page-width));
  height: 146px;
  padding: env(safe-area-inset-top, 0) 12px 0;
  background: transparent;
  border-bottom: 0;
  transform: translateX(-50%);
  transition: height 220ms ease-out, transform 260ms cubic-bezier(.2, .8, .2, 1), background-color 180ms ease-out, border-color 180ms ease-out;
}

.topbar::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--red);
  content: "";
  opacity: 0;
  transform: scaleX(var(--page-progress, 0));
  transform-origin: left center;
}

.topbar.is-hidden {
  transform: translate(-50%, -110%);
}

.topbar.is-scrolled .menu-toggle {
  align-self: center;
  margin-top: 0;
}

.topbar.is-scrolled {
  height: 68px;
  background: rgb(255 244 200 / 96%);
  border-bottom: 3px solid var(--ink);
  box-shadow: 0 5px 0 rgb(255 126 170 / 72%);
}

.topbar.is-scrolled::after {
  opacity: 1;
}

.brand {
  grid-column: 2;
  justify-self: center;
  align-self: start;
  display: inline-flex;
  align-items: center;
  width: 154px;
  height: 70px;
  margin-top: 24px;
  transition: width 220ms ease-out, filter 220ms ease-out;
}

/* One hard offset shadow, like every other block on the page. A pink shadow on
   one side plus a blue one on the other reads as the TikTok wordmark. */
.brand img {
  width: 100%;
  height: auto;
  filter: brightness(0) drop-shadow(4px 4px 0 var(--cream));
}

.topbar.is-scrolled .brand {
  align-self: center;
  width: 92px;
  height: 44px;
  margin-top: 0;
}

.topbar.is-scrolled .brand img {
  filter: brightness(0);
}

.tour-mark {
  position: absolute;
  top: 118px;
  left: 50%;
  padding: 0;
  color: var(--ink);
  background: transparent;
  font-family: var(--hand);
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  transform: translateX(-50%) rotate(-2deg);
  transition: opacity 150ms ease-out, transform 150ms ease-out;
  white-space: nowrap;
}

.topbar.is-scrolled .tour-mark {
  opacity: 0;
  transform: translate(-50%, -8px) rotate(-2deg);
}

.menu-toggle {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  margin-top: 35px;
  display: grid;
  place-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  background: var(--pink);
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 3px 4px 0 var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--ink);
  border-radius: 0;
  box-shadow: none;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: var(--yellow);
  outline: 3px solid var(--cream);
  outline-offset: -6px;
}

.menu-toggle:active {
  box-shadow: 1px 2px 0 var(--ink);
  transform: translate(2px, 2px);
}

.tour-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  width: min(100%, var(--page-width));
  min-height: 100svh;
  margin-inline: auto;
  padding: calc(90px + env(safe-area-inset-top, 0px)) 24px 32px;
  color: var(--cream);
  background-color: var(--ink);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Ccircle cx='4' cy='4' r='2' fill='%23ff7eaa' fill-opacity='.2'/%3E%3C/svg%3E");
}

.tour-menu a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  min-height: 78px;
  padding: 12px 0;
  border-bottom: 2px dashed var(--pink);
  font-family: var(--display);
  font-size: clamp(2.3rem, 11vw, 4rem);
  line-height: 1;
  text-decoration: none;
}

.tour-menu a span {
  color: var(--green);
}

.tour-menu a:hover,
.tour-menu a:focus-visible {
  color: var(--yellow);
  outline: none;
  transform: translateX(6px);
}

.tour-menu > img {
  position: absolute;
  right: 4%;
  bottom: 3%;
  width: 60%;
  transform: rotate(-2deg);
}

.menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  min-width: 48px;
  min-height: 48px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--cream);
  font-weight: 700;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: max(100svh, 620px);
  padding-top: 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--green);
  border-bottom: 0;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, transparent 50%, rgb(17 18 15 / 3%) 100%);
  content: "";
  pointer-events: none;
}

.hero-poster-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--green);
  border-bottom: 0;
}

.hero-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.006);
}

.hero-walker {
  display: none;
}

.hero-ticket {
  position: absolute;
  right: 4.5%;
  bottom: 4.9rem;
  left: 4.5%;
  z-index: 6;
  min-height: 0;
  padding: 56px 20px 20px;
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22'%3E%3Ccircle cx='4' cy='4' r='1.5' fill='%23ff7eaa' fill-opacity='.24'/%3E%3C/svg%3E");
  border: 3px solid var(--ink);
  clip-path: polygon(0 4%, 3% 0, 12% 2%, 23% 0, 34% 2%, 48% 0, 62% 2%, 74% 0, 87% 2%, 97% 0, 100% 5%, 98% 14%, 100% 24%, 98% 35%, 100% 46%, 98% 58%, 100% 70%, 98% 82%, 100% 95%, 96% 100%, 84% 98%, 72% 100%, 60% 98%, 48% 100%, 35% 98%, 23% 100%, 11% 98%, 2% 100%, 0 95%, 2% 84%, 0 72%, 2% 60%, 0 48%, 2% 35%, 0 24%, 2% 13%);
  filter: drop-shadow(9px 10px 0 var(--ink));
  transform: rotate(-1.2deg);
}

.hero-ticket::before {
  display: none;
}

.ticket-stamp {
  position: absolute;
  top: 18px;
  right: auto;
  left: 20px;
  display: block;
  width: max-content;
  height: auto;
  padding: 5px 11px 3px;
  color: var(--ink);
  background: var(--green);
  border: 2px solid var(--ink);
  border-radius: 0;
  font-family: var(--hand);
  font-size: 0.86rem;
  line-height: 1;
  transform: rotate(-2deg);
  opacity: 1;
}

.ticket-kicker {
  margin: 0 0 6px;
  color: #814323;
  font-weight: 700;
  font-size: 0.73rem;
  letter-spacing: 0.04em;
}

.hero-ticket h1 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--display);
  color: var(--pink);
  font-size: clamp(2.3rem, 10.2vw, 3.1rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.015em;
}

.venue {
  margin: 10px 0 0;
  font-weight: 700;
  font-size: 0.74rem;
  line-height: 1.42;
}

.venue span {
  display: inline-block;
  max-width: 25ch;
  margin-top: 2px;
  font-size: 0.64rem;
  font-weight: 400;
}

.hero-ticket__action {
  position: static;
  display: inline-flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  width: auto;
  min-width: 168px;
  height: auto;
  min-height: 46px;
  margin-top: 16px;
  padding: 9px 14px 7px;
  color: var(--ink);
  background: var(--pink);
  border: 3px solid var(--ink);
  box-shadow: 4px 5px 0 var(--ink);
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: left;
  text-decoration: none;
  transition: transform 160ms ease-out, box-shadow 160ms ease-out, background-color 160ms ease-out;
}

.hero-ticket__action b {
  font-size: 1.15rem;
}

.hero-ticket__action:hover,
.hero-ticket__action:focus-visible {
  background: var(--yellow);
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  transform: translate(-2px, -2px) rotate(0.5deg);
  box-shadow: 7px 8px 0 var(--ink);
}

.hero-ticket__action:active {
  box-shadow: 1px 2px 0 var(--ink);
  transform: translate(3px, 3px);
}

.ticket-barcode {
  display: none;
}

.scroll-cue {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 8;
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 8px 12px;
  color: var(--cream);
  background: var(--ink);
  border: 0;
  font-weight: 700;
  cursor: pointer;
}

.scroll-cue b {
  color: var(--pink);
  font-size: 1.25rem;
}

.scroll-cue:hover,
.scroll-cue:focus-visible {
  color: var(--ink);
  background: var(--yellow);
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}

.shows {
  position: relative;
  z-index: 2;
  margin-top: -120px;
  padding: 150px 18px 110px;
  overflow: clip;
  background: transparent;
}

.shows::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--green);
  background-image: url("assets/world-tour-road-loop-v2.webp");
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 100% auto;
  content: "";
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, rgb(0 0 0 / 35%) 54px, #000 128px);
  mask-image: linear-gradient(to bottom, transparent 0, rgb(0 0 0 / 35%) 54px, #000 128px);
}

.section-intro {
  position: relative;
  z-index: 4;
  max-width: 430px;
  margin-bottom: 30px;
  padding: 30px 26px 36px;
  background: var(--cream);
  border: 3px solid var(--ink);
  clip-path: polygon(0 2%, 5% 0, 14% 2%, 23% 0, 35% 2%, 47% 0, 58% 2%, 71% 0, 84% 2%, 97% 0, 100% 4%, 98% 20%, 100% 36%, 98% 52%, 100% 70%, 98% 88%, 100% 98%, 95% 100%, 80% 98%, 64% 100%, 48% 98%, 33% 100%, 17% 98%, 2% 100%, 0 96%, 2% 78%, 0 60%, 2% 43%, 0 24%);
  filter: drop-shadow(7px 8px 0 var(--ink));
  transform: rotate(-0.8deg);
}

.scribble {
  display: inline-block;
  margin: 0 0 14px 8px;
  padding: 5px 10px 3px;
  color: #000;
  background: var(--red);
  font-weight: 700;
  transform: rotate(-3deg);
}

.section-intro h2,
.archive h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 18vw, 5.2rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0.015em;
}

.section-intro > p:last-child {
  max-width: 31ch;
  margin: 22px 0 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.55;
}

.filter-strip {
  position: sticky;
  top: 76px;
  z-index: 15;
  display: flex;
  gap: 10px;
  width: calc(100% + 36px);
  margin: 0 -18px 42px;
  padding: 11px 18px 13px;
  overflow-x: auto;
  background: var(--cream);
  border-block: 2px dashed var(--ink);
  scrollbar-width: none;
}

.filter-strip::-webkit-scrollbar {
  display: none;
}

.filter-stamp {
  flex: 0 0 auto;
  min-height: 45px;
  padding: 8px 14px;
  color: var(--ink);
  background: transparent;
  border: 3px solid var(--ink);
  font-family: var(--display);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transform: rotate(-1deg);
  cursor: pointer;
}

.filter-stamp:nth-child(2) { transform: rotate(1.5deg); }
.filter-stamp:nth-child(3) { transform: rotate(-0.7deg); }

.filter-stamp.is-active {
  color: var(--cream);
  background: var(--ink);
  box-shadow: 4px 4px 0 var(--pink);
}

.filter-stamp:hover,
.filter-stamp:focus-visible {
  background: var(--yellow);
  outline: 3px solid var(--pink);
  outline-offset: 2px;
}

.filter-stamp.is-active:hover,
.filter-stamp.is-active:focus-visible {
  color: var(--ink);
}

.journey {
  position: relative;
  z-index: 4;
  display: flow-root;
  min-height: 2500px;
  padding: 18px 0 60px;
}

.journey .tour-stop:first-of-type {
  margin-top: 58px;
}

.route-line {
  display: none;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  width: 75%;
  height: 100%;
  overflow: visible;
  transform: translateX(-50%);
}

.route-line path {
  fill: none;
  stroke: var(--pink);
  stroke-width: 13;
  stroke-linecap: round;
  stroke-dasharray: 0.015 0.018;
  vector-effect: non-scaling-stroke;
}

.road-companion {
  position: fixed;
  inset: 0;
  z-index: 34;
  overflow: hidden;
  pointer-events: none;
}

.route-car {
  position: absolute;
  top: var(--car-top, calc(46vh - 48px));
  left: 50%;
  z-index: 35;
  width: 224px;
  height: 100px;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: var(--car-opacity, 0);
  transform: translate3d(calc(-50% + var(--car-shift, 0px)), 0, 0) rotate(var(--car-tilt, 0deg));
  backface-visibility: hidden;
  transition: opacity 220ms ease-out;
  will-change: transform;
}

.route-car img {
  position: absolute;
  top: -66px;
  left: 0;
  width: 224px;
  height: 224px;
  max-width: none;
  filter: drop-shadow(4px 5px 0 rgb(17 18 15 / 28%));
}

.route-status {
  position: fixed;
  top: calc(46vh - 128px);
  left: 50%;
  z-index: 36;
  width: max-content;
  max-width: 188px;
  margin: 0;
  padding: 7px 10px 5px;
  color: var(--cream);
  background: var(--ink);
  border: 3px solid var(--cream);
  box-shadow: 4px 5px 0 var(--pink);
  opacity: var(--car-opacity, 0);
  pointer-events: none;
  transform: translateX(-50%) rotate(-2deg);
  transition: opacity 180ms ease-out, transform 180ms ease-out;
}

.route-status small,
.route-status strong {
  display: block;
}

.route-status small {
  color: var(--yellow);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.route-status strong {
  overflow: hidden;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tour-stop {
  position: relative;
  z-index: 4;
  width: 88%;
  min-height: 252px;
  margin-top: 124px;
  padding: 34px 24px 76px 22px;
  border: 3px solid var(--ink);
  clip-path: polygon(0 3%, 3% 0, 11% 2%, 19% 0, 28% 2%, 37% 0, 47% 2%, 57% 0, 67% 2%, 77% 0, 87% 2%, 97% 0, 100% 4%, 98% 14%, 100% 25%, 98% 36%, 100% 48%, 98% 60%, 100% 72%, 98% 84%, 100% 96%, 97% 100%, 86% 98%, 75% 100%, 64% 98%, 53% 100%, 42% 98%, 31% 100%, 20% 98%, 10% 100%, 2% 98%, 0 94%, 2% 82%, 0 70%, 2% 58%, 0 46%, 2% 34%, 0 22%, 2% 11%);
  filter: drop-shadow(7px 8px 0 var(--ink));
  transition: transform 420ms cubic-bezier(.18, .84, .24, 1), filter 420ms cubic-bezier(.18, .84, .24, 1), opacity 250ms ease-out;
}

.tour-stop:nth-of-type(odd) {
  margin-right: auto;
  transform: rotate(-1.4deg);
}

.tour-stop:nth-of-type(even) {
  margin-left: auto;
  transform: rotate(1.2deg);
}

.tour-stop[hidden] {
  display: none;
}

.motion-ready .tour-stop:not(.is-visible) {
  opacity: 1;
  filter: drop-shadow(7px 8px 0 var(--ink));
  transform: translateY(10px) rotate(0deg);
}

.tour-stop.is-visible {
  opacity: 1;
}

.stop-pink { background: var(--pink); }
.stop-yellow { background: var(--yellow); }
.stop-cream { background: var(--paper); }
.stop-blue { background: var(--blue); }
.stop-green { background: var(--green); }

.tour-stop.is-featured {
  width: 96%;
  min-height: 285px;
  padding-top: 34px;
  box-shadow: inset 0 0 0 7px var(--pink);
}

.stop-stamp {
  position: absolute;
  top: 20px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 5px double currentColor;
  border-radius: 50%;
  font-family: var(--display);
  line-height: 0.8;
  text-align: center;
  transform: rotate(11deg);
  opacity: 0.68;
}

.stop-stamp span,
.stop-stamp b {
  grid-area: 1 / 1;
}

.stop-stamp span {
  transform: translateY(-12px);
  font-size: 0.78rem;
}

.stop-stamp b {
  transform: translateY(7px);
  font-size: 1.55rem;
  font-weight: 400;
}

.stop-copy {
  max-width: calc(100% - 62px);
}

.stop-date {
  display: inline-block;
  margin: 0 0 7px;
  padding: 3px 7px 2px;
  color: var(--cream);
  background: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
}

.tour-stop h3 {
  max-width: 8ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.9rem, 13vw, 4.2rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.018em;
}

.stop-venue {
  max-width: 27ch;
  min-height: 2.7em;
  margin: 12px 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.5;
}

.tour-stop.is-arriving {
  filter: drop-shadow(12px 14px 0 var(--ink));
}

.tour-stop.is-arriving::after {
  position: absolute;
  right: 16px;
  bottom: 11px;
  left: 16px;
  z-index: -1;
  height: 58px;
  background: var(--pink);
  border: 3px solid var(--ink);
  content: "";
  transform: translateY(-3px) rotate(-1deg);
}

.tour-stop.is-arriving .stop-stamp {
  animation: stamp-hit 420ms steps(3, end) both;
}

.status {
  display: inline-block;
  padding: 4px 8px 2px;
  border: 2px solid currentColor;
  font-family: var(--display);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  transform: rotate(-1deg);
}

.status-live {
  color: #074d29;
}

.status-pending {
  color: #672b12;
}

.status-played {
  color: #6d2d21;
}

.ticket-action {
  position: absolute;
  right: 14px;
  bottom: 15px;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 9px 14px 8px;
  color: var(--cream);
  background: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 4px 5px 0 rgb(255 244 200 / 62%);
  font-family: var(--display);
  font-size: 1.17rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 140ms ease-out, box-shadow 140ms ease-out, color 140ms ease-out, background-color 140ms ease-out;
}

.ticket-action:hover,
.ticket-action:focus-visible {
  color: var(--ink);
  background: var(--cream);
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  box-shadow: 7px 8px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.ticket-action:active {
  box-shadow: 1px 2px 0 var(--ink);
  transform: translate(3px, 3px);
}

.ticket-action--ended {
  color: var(--ink);
  background: var(--cream);
  border-style: dashed;
  cursor: default;
}

/* ---- Sadeek El Bernameg drop ---- */

.drop {
  position: relative;
  z-index: 5;
  padding: 0 0 62px;
  color: var(--ink);
  background-color: var(--blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26'%3E%3Ccircle cx='4' cy='4' r='2' fill='%2311120f' fill-opacity='.12'/%3E%3C/svg%3E");
  border-top: 6px solid var(--ink);
}

.drop-ticker {
  display: block;
  overflow: hidden;
  padding: 9px 0 7px;
  color: var(--cream);
  background: var(--ink);
  border-bottom: 4px solid var(--pink);
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  white-space: nowrap;
}

.drop-ticker:hover,
.drop-ticker:focus-visible {
  color: var(--yellow);
  outline: 3px solid var(--pink);
  outline-offset: -3px;
}

.drop-ticker__track {
  display: inline-flex;
  animation: ticker-run 22s linear infinite;
}

.drop-ticker__track > span {
  flex: 0 0 auto;
  padding-right: 0;
}

.drop-ticker:hover .drop-ticker__track {
  animation-play-state: paused;
}

@keyframes ticker-run {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.drop-head {
  padding: 34px 18px 0;
}

.drop-head p {
  margin: 0 0 8px;
  font-family: var(--hand);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  transform: rotate(-1.5deg);
}

.drop-head h2 {
  margin: 0 0 26px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2.4rem, 12vw, 3.4rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-shadow: 4px 4px 0 var(--pink);
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0 18px;
  list-style: none;
}

.merch-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 10px 11px 13px;
  color: var(--ink);
  background: var(--cream);
  border: 3px solid var(--ink);
  box-shadow: 5px 6px 0 var(--ink);
  text-decoration: none;
  transition: transform 150ms ease-out, box-shadow 150ms ease-out, background-color 150ms ease-out;
}

.merch-grid li:nth-child(2n) .merch-card { transform: rotate(0.8deg); }
.merch-grid li:nth-child(2n + 1) .merch-card { transform: rotate(-0.8deg); }

.merch-card:hover,
.merch-card:focus-visible {
  background: var(--yellow);
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  box-shadow: 8px 9px 0 var(--ink);
  transform: translate(-2px, -2px) rotate(0deg);
}

.merch-card:active {
  box-shadow: 2px 3px 0 var(--ink);
  transform: translate(3px, 3px) rotate(0deg);
}

/* Store shots are product photos on white, so contain them on a paper ground
   rather than cropping the item out of frame. */
.merch-shot {
  display: block;
  margin-bottom: 10px;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--paper);
  border: 2px solid var(--ink);
}

.merch-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.merch-card h3 {
  margin: 0 0 5px;
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.merch-card p {
  margin: 0 0 10px;
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1.42;
}

.merch-price {
  margin-top: auto;
  align-self: flex-start;
  padding: 4px 8px 2px;
  background: var(--green);
  border: 2px solid var(--ink);
  font-family: var(--display);
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}

.drop-shop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 28px 18px 0;
  min-height: 56px;
  padding: 12px 16px 10px;
  color: var(--cream);
  background: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 6px 7px 0 var(--pink);
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform 150ms ease-out, box-shadow 150ms ease-out, color 150ms ease-out, background-color 150ms ease-out;
}

.drop-shop:hover,
.drop-shop:focus-visible {
  color: var(--ink);
  background: var(--yellow);
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  box-shadow: 9px 10px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.drop-shop:active {
  box-shadow: 2px 3px 0 var(--ink);
  transform: translate(4px, 4px);
}

.drop-note {
  margin: 12px 18px 0;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.45;
  opacity: 0.78;
}

/* ---- Product page ---- */

.product-body {
  background: var(--blue);
}

.product-body .site-shell {
  background-color: var(--blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26'%3E%3Ccircle cx='4' cy='4' r='2' fill='%2311120f' fill-opacity='.12'/%3E%3C/svg%3E");
}

.product-bar {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: var(--ink);
  border-bottom: 4px solid var(--pink);
}

.product-bar .brand {
  align-self: center;
  width: 128px;
  height: auto;
  margin-top: 0;
}

.product-bar .brand img {
  filter: brightness(0) invert(1);
}

.product-back {
  flex: 0 0 auto;
  padding: 9px 13px 7px;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--cream);
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.product-back:hover,
.product-back:focus-visible {
  background: var(--green);
  outline: 3px solid var(--cream);
  outline-offset: 3px;
}

.product {
  padding: 26px 18px 8px;
}

.product-stage {
  overflow: hidden;
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 7px 8px 0 var(--ink);
}

.product-stage img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: contain;
}

.product-thumbs {
  display: flex;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.product-thumbs button {
  display: block;
  width: 66px;
  height: 66px;
  padding: 0;
  overflow: hidden;
  background: var(--paper);
  border: 3px solid var(--ink);
  cursor: pointer;
}

.product-thumbs button.is-active {
  box-shadow: 0 0 0 3px var(--pink);
}

.product-thumbs button:hover,
.product-thumbs button:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 2px;
}

.product-thumbs img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-copy {
  padding-top: 26px;
}

.product-kicker {
  margin: 0 0 8px;
  font-family: var(--hand);
  font-size: 0.78rem;
  transform: rotate(-1.5deg);
}

.product-copy h1 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(2.6rem, 13vw, 3.6rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-shadow: 4px 4px 0 var(--pink);
}

.product-price {
  display: inline-block;
  margin: 0 0 16px;
  padding: 5px 11px 3px;
  background: var(--green);
  border: 3px solid var(--ink);
  font-family: var(--display);
  font-size: 1.3rem;
  letter-spacing: 0.03em;
}

.product-desc {
  max-width: 42ch;
  margin: 0 0 22px;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.55;
}

.product-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 60px;
  padding: 12px 16px 10px;
  color: var(--cream);
  background: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 6px 7px 0 var(--pink);
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform 150ms ease-out, box-shadow 150ms ease-out, color 150ms ease-out, background-color 150ms ease-out;
}

.product-buy:hover,
.product-buy:focus-visible {
  color: var(--ink);
  background: var(--yellow);
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  box-shadow: 9px 10px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.product-buy:active {
  box-shadow: 2px 3px 0 var(--ink);
  transform: translate(4px, 4px);
}

.product-note {
  margin: 12px 0 0;
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1.45;
  opacity: 0.8;
}

.product-facts {
  margin: 24px 0 0;
  border-top: 3px solid var(--ink);
}

.product-facts div {
  display: flex;
  gap: 14px;
  align-items: baseline;
  justify-content: space-between;
  padding: 10px 0 8px;
  border-bottom: 2px dashed var(--ink);
}

.product-facts dt {
  font-family: var(--display);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.product-facts dd {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: right;
}

.product-more {
  padding: 40px 18px 60px;
}

.product-more h2 {
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: clamp(1.9rem, 9vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.product-more .merch-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0;
}

.product-more .drop-shop {
  margin-inline: 0;
}

.product-footer {
  min-height: 0;
  padding-top: 56px;
}

.product-footer > p {
  font-size: clamp(2.2rem, 10vw, 3.2rem);
}

.archive {
  position: relative;
  min-height: 650px;
  padding: 88px 18px 70px;
  overflow: hidden;
  color: var(--cream);
  background-color: var(--ink);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Ccircle cx='4' cy='4' r='2' fill='%23ffe16f' fill-opacity='.14'/%3E%3C/svg%3E");
  border-top: 6px solid var(--pink);
}

.archive header {
  position: relative;
  z-index: 3;
}

.archive header > p {
  display: inline-block;
  margin: 0 0 16px;
  padding: 4px 9px;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 700;
  transform: rotate(1deg);
}

.archive h2 {
  color: var(--pink);
}

.archive-art {
  position: absolute;
  top: 42px;
  right: -42%;
  z-index: 1;
  width: 100%;
  opacity: 0.62;
  transform: rotate(7deg);
}

.archive-art img {
  filter: drop-shadow(8px 10px 0 rgb(255 126 170 / 34%));
}

.archive-toggle {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 56px;
  margin-top: 46px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--green);
  border: 3px solid var(--cream);
  box-shadow: 6px 7px 0 var(--pink);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.archive-toggle b {
  font-size: 1.7rem;
  transition: transform 180ms ease-out;
}

.archive-toggle[aria-expanded="true"] b {
  transform: rotate(45deg);
}

.archive-toggle:hover,
.archive-toggle:focus-visible {
  background: var(--yellow);
  outline: 3px solid var(--pink);
  outline-offset: 4px;
}

.past-shows {
  position: relative;
  z-index: 4;
  margin-top: 34px;
  border-top: 2px solid var(--cream);
}

.past-shows div {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 2px 12px;
  padding: 17px 0 15px;
  border-bottom: 1px dashed rgb(255 244 200 / 58%);
}

.past-shows div::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 72px;
  color: var(--pink);
  border-top: 3px solid currentColor;
  content: "PLAYED";
  font-family: var(--display);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-align: center;
  transform: rotate(-6deg);
}

.past-shows time {
  grid-row: span 2;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 700;
}

.past-shows strong {
  padding-right: 76px;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
}

.past-shows span {
  color: #fff0b5;
  font-size: 0.72rem;
}

.footer {
  position: relative;
  min-height: 530px;
  padding: 220px 20px calc(38px + env(safe-area-inset-bottom, 0px));
  overflow: hidden;
  background: var(--blue);
  border-top: 6px solid var(--ink);
  text-align: center;
}

.footer-road {
  position: absolute;
  top: 28px;
  left: -12%;
  width: 124%;
  height: 150px;
  border-top: 4px dashed var(--ink);
  border-bottom: 4px dashed var(--ink);
  transform: rotate(-3deg);
}

.footer-road img {
  width: 170px;
  margin-top: 18px;
  animation: drive-across 8s steps(40, end) infinite;
}

.footer > p {
  margin: 0 0 24px;
  font-family: var(--display);
  font-size: clamp(2.7rem, 13vw, 4.5rem);
  line-height: 0.95;
}

.footer > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 10px 16px;
  color: var(--cream);
  background: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 6px 7px 0 var(--pink);
  font-family: var(--display);
  font-size: 1.2rem;
  text-decoration: none;
}

.footer > a:hover,
.footer > a:focus-visible {
  color: var(--ink);
  background: var(--yellow);
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.footer-logo {
  width: 120px;
  margin: 46px auto 26px;
}

.footer small {
  display: block;
  max-width: 36ch;
  margin: 0 auto;
  font-size: 0.68rem;
  font-weight: 700;
}

.alert-dialog {
  width: min(calc(100% - 28px), 470px);
  max-height: calc(100svh - 28px);
  margin: auto;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--ink);
  background: var(--cream);
  border: 4px solid var(--ink);
  border-radius: 0;
  box-shadow: var(--hard-shadow);
}

.alert-dialog::backdrop {
  background: rgb(17 18 15 / 82%);
}

.alert-form,
.alert-success {
  position: relative;
  min-height: 520px;
  padding: 72px 22px 26px;
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25'%3E%3Ccircle cx='5' cy='5' r='2' fill='%23ff7eaa' fill-opacity='.2'/%3E%3C/svg%3E");
}

.alert-form > img {
  position: absolute;
  top: -18px;
  right: -8px;
  width: 150px;
  transform: rotate(18deg);
  pointer-events: none;
}

.dialog-close {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--cream);
  background: var(--ink);
  border: 2px solid var(--ink);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.dialog-kicker {
  display: inline-block;
  margin: 0 0 12px;
  padding: 4px 8px 2px;
  color: #000;
  background: var(--red);
  font-weight: 700;
  transform: rotate(-2deg);
}

.alert-form h2,
.alert-success h2 {
  max-width: 8ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.6rem, 17vw, 5.2rem);
  font-weight: 400;
  line-height: 0.86;
}

.alert-copy {
  max-width: 34ch;
  margin: 22px 0 26px;
  font-size: 0.85rem;
}

.alert-form label {
  display: block;
  margin-bottom: 7px;
  font-weight: 700;
  font-size: 0.78rem;
}

.alert-form input {
  width: 100%;
  min-height: 54px;
  padding: 12px;
  color: var(--ink);
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 0;
  box-shadow: 4px 5px 0 var(--pink);
  font-size: 1rem;
}

.alert-form input::placeholder {
  color: #744e35;
  opacity: 1;
}

.alert-form input:focus {
  outline: 4px solid var(--green);
  outline-offset: 3px;
}

.alert-form input[aria-invalid="true"] {
  outline: 4px solid var(--red);
  outline-offset: 3px;
}

.field-error {
  margin: 10px 0 0;
  color: #8d1217;
  font-size: 0.74rem;
  font-weight: 700;
}

.submit-alert,
.success-close {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 56px;
  margin-top: 22px;
  padding: 10px 14px;
  color: var(--cream);
  background: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 5px 6px 0 var(--green);
  font-family: var(--display);
  font-size: 1.1rem;
  cursor: pointer;
}

.submit-alert:hover,
.submit-alert:focus-visible,
.success-close:hover,
.success-close:focus-visible {
  color: var(--ink);
  background: var(--yellow);
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.prototype-note {
  margin: 16px 0 0;
  font-size: 0.66rem;
  font-weight: 700;
}

.alert-success {
  display: grid;
  place-content: center;
  text-align: center;
}

.alert-success[hidden] {
  display: none;
}

.alert-success h2 {
  max-width: none;
  margin: 24px 0 12px;
  color: var(--green);
}

.alert-success p {
  max-width: 33ch;
  margin: 0 auto;
}

.success-stamp {
  display: grid;
  place-content: center;
  width: 140px;
  height: 140px;
  margin: 0 auto;
  color: var(--green);
  border: 9px double currentColor;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 0.9;
  transform: rotate(-9deg);
}

.passport-dialog {
  width: min(calc(100% - 28px), 420px);
  height: min(calc(100svh - 40px), 560px);
  max-height: calc(100svh - 24px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background-color: #793b28;
  background-image: linear-gradient(90deg, rgb(17 18 15 / 28%) 0 5%, transparent 5% 95%, rgb(17 18 15 / 23%) 95%), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Ccircle cx='5' cy='5' r='2' fill='%2311120f' fill-opacity='.18'/%3E%3C/svg%3E");
  border: 4px solid var(--ink);
  border-radius: 14px 6px 14px 7px;
  box-shadow: 7px 9px 0 var(--ink);
}

.passport-dialog::backdrop {
  background-color: rgb(17 18 15 / 88%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26'%3E%3Ccircle cx='4' cy='4' r='2' fill='%23ff7eaa' fill-opacity='.16'/%3E%3C/svg%3E");
}

.passport-shell {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 12px 10px 12px 16px;
  overflow: hidden;
  background: transparent;
  transform-origin: center left;
}

.passport-dialog.is-opening .passport-shell {
  animation: passport-open 520ms cubic-bezier(.12, .8, .2, 1) both;
}

.passport-page {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 16px;
  overflow: hidden;
  background-color: var(--cream);
  background-image: radial-gradient(circle at 20% 14%, rgb(255 126 170 / 14%) 0 4px, transparent 5px), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Ccircle cx='5' cy='5' r='1.5' fill='%23b95f3d' fill-opacity='.14'/%3E%3C/svg%3E");
  border: 3px solid #4a281c;
  border-radius: 8px 14px 12px 6px;
  box-shadow: inset 0 0 0 5px rgb(185 95 61 / 25%);
}

.passport-close {
  position: absolute;
  top: 14px;
  right: 12px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 3px 4px 0 var(--pink);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.passport-close:hover,
.passport-close:focus-visible {
  color: var(--ink);
  background: var(--yellow);
  outline: 3px solid var(--pink);
  outline-offset: 3px;
}

.passport-logo {
  width: min(42%, 132px);
  margin-inline: auto;
  filter: brightness(0) drop-shadow(3px 3px 0 var(--pink));
}

.passport-masthead {
  position: relative;
  z-index: 9;
  text-align: center;
}

.passport-label {
  margin: 2px 0 0;
  font-family: var(--hand);
  font-size: 0.6rem;
  letter-spacing: 0;
}

.passport-portrait {
  position: absolute;
  bottom: 14px;
  left: -22px;
  z-index: 2;
  width: 56%;
  height: 54%;
  overflow: visible;
  transform: rotate(1deg) scaleX(-1);
}

.passport-portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left bottom;
  mix-blend-mode: multiply;
  filter: saturate(.96) contrast(1.03);
}

.passport-code {
  position: absolute;
  bottom: 8px;
  left: 10px;
  z-index: 8;
  display: grid;
  font-size: 0.42rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.15;
  opacity: .65;
  white-space: nowrap;
}

.passport-seal {
  position: absolute;
  top: 20%;
  left: 4%;
  z-index: 6;
  display: grid;
  place-content: center;
  width: min(46%, 148px);
  aspect-ratio: 1;
  color: #17844a;
  border: 7px double currentColor;
  border-radius: 50%;
  font-family: var(--display);
  line-height: 0.82;
  text-align: center;
  transform: rotate(-12deg);
  opacity: 0.78;
  pointer-events: none;
}

.passport-seal::before,
.passport-seal::after {
  position: absolute;
  right: 12%;
  left: 12%;
  border-top: 3px solid currentColor;
  content: "";
}

.passport-seal::before { top: 27%; }
.passport-seal::after { bottom: 27%; }

.passport-seal span {
  font-size: 1.6rem;
}

.passport-seal b {
  margin-top: 8px;
  font-family: var(--utility);
  font-size: 0.5rem;
  letter-spacing: .08em;
}

.passport-ticket {
  position: absolute;
  top: 31%;
  right: 10px;
  z-index: 7;
  width: 57%;
  min-height: 214px;
  padding: 13px 12px 14px;
  background-color: #fff3be;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='19'%3E%3Ccircle cx='4' cy='4' r='1.5' fill='%23b95f3d' fill-opacity='.16'/%3E%3C/svg%3E");
  border: 3px solid var(--ink);
  clip-path: polygon(0 3%, 5% 0, 13% 2%, 21% 0, 31% 2%, 42% 0, 53% 2%, 64% 0, 76% 2%, 88% 0, 97% 2%, 100% 6%, 98% 16%, 100% 28%, 98% 41%, 100% 55%, 98% 70%, 100% 84%, 97% 98%, 88% 100%, 77% 98%, 65% 100%, 52% 98%, 39% 100%, 27% 98%, 15% 100%, 4% 98%, 0 94%, 2% 78%, 0 62%, 2% 47%, 0 32%, 2% 17%);
  filter: drop-shadow(5px 6px 0 rgb(17 18 15 / 72%));
  transform: rotate(1.5deg);
}

.passport-ticket-label {
  max-width: 14ch;
  margin: 0 46px 14px 0;
  font-size: .55rem;
  font-weight: 700;
  line-height: 1.15;
}

.passport-stamp {
  position: absolute;
  top: 8px;
  right: 9px;
  display: grid;
  place-content: center;
  width: 42px;
  height: 42px;
  margin: 0;
  color: var(--pink);
  border: 4px double currentColor;
  border-radius: 50%;
  font-family: var(--display);
  line-height: 0.88;
  text-align: center;
  transform: rotate(10deg);
}

.passport-stamp span {
  font-size: 1.2rem;
}

.passport-stamp small {
  font-size: 0.3rem;
  letter-spacing: 0.04em;
}

.passport-ticket h2 {
  max-width: none;
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 1.95rem;
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: 0.015em;
  overflow-wrap: anywhere;
}

.passport-ticket dl {
  margin: 0;
  border-top: 3px solid var(--ink);
}

.passport-ticket dl div {
  display: block;
  padding: 9px 0 8px;
  border-bottom: 2px dashed var(--ink);
}

.passport-ticket dt {
  font-family: var(--display);
  font-size: 0.78rem;
}

.passport-ticket dd {
  margin: 1px 0 0;
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1.25;
}

.passport-status-row {
  display: none !important;
}

.passport-perforation {
  position: absolute;
  right: 10px;
  bottom: 78px;
  z-index: 10;
  width: 57%;
  border-top: 3px dashed var(--ink);
}

.passport-book {
  position: absolute;
  right: 10px;
  bottom: 22px;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 57%;
  min-height: 50px;
  padding: 9px 13px;
  color: var(--ink);
  background: var(--pink);
  border: 3px solid var(--ink);
  box-shadow: 5px 6px 0 var(--green);
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: .9;
  text-decoration: none;
}

.passport-book:hover,
.passport-book:focus-visible {
  background: var(--yellow);
  outline: 4px solid var(--ink);
  outline-offset: 3px;
  transform: translate(-2px, -2px);
}

.passport-book:active {
  box-shadow: 1px 2px 0 var(--ink);
  transform: translate(4px, 4px);
}

.provider-note {
  position: absolute;
  right: 10px;
  bottom: 7px;
  z-index: 13;
  margin: 0;
  font-size: 0.44rem;
  font-weight: 700;
  text-align: right;
}

@keyframes passport-open {
  0% { clip-path: inset(0 100% 0 0); transform: rotateY(-18deg) scale(.97); }
  65% { clip-path: inset(0 -2% 0 0); transform: rotateY(3deg) scale(1.01); }
  100% { clip-path: inset(0); transform: rotateY(0) scale(1); }
}

@keyframes stamp-hit {
  0% { transform: rotate(10deg) scale(1.7); opacity: 0; }
  65% { transform: rotate(10deg) scale(.92); opacity: .82; }
  100% { transform: rotate(10deg) scale(1); opacity: .68; }
}

@keyframes walker-drift {
  from { transform: translateX(-6px) rotate(-1deg); }
  to { transform: translateX(18px) rotate(1deg); }
}

@keyframes drive-across {
  from { transform: translateX(-180px) scaleX(-1); }
  to { transform: translateX(620px) scaleX(-1); }
}

@media (min-width: 700px) {
  .desktop-curtain {
    display: block;
  }

  .site-shell {
    border-inline: 5px solid var(--ink);
  }

  .passport-dialog {
    width: min(calc(100% - 36px), 420px);
  }
}

/* ---- Tablet: the column widens, so the road stays visible between the
   stops instead of every card spanning the full shell. ---- */
@media (min-width: 760px) {
  :root {
    --page-width: 720px;
  }

  .topbar {
    height: 168px;
    padding-inline: 22px;
  }

  .brand {
    width: 196px;
    height: 90px;
    margin-top: 30px;
  }

  .tour-mark {
    top: 140px;
    font-size: 0.94rem;
  }

  .menu-toggle {
    width: 56px;
    height: 56px;
    margin-top: 46px;
  }

  .menu-toggle span {
    width: 26px;
  }

  .hero {
    min-height: max(100svh, 760px);
  }

  .hero-ticket {
    right: auto;
    bottom: 6rem;
    left: 5%;
    width: min(64%, 440px);
    padding: 62px 26px 24px;
  }

  .hero-ticket h1 {
    font-size: 3.4rem;
  }

  .venue {
    font-size: 0.84rem;
  }

  .hero-ticket__action {
    min-width: 200px;
    min-height: 52px;
    font-size: 1.2rem;
  }

  .scroll-cue {
    right: 26px;
    bottom: 22px;
  }

  .shows {
    padding-inline: 26px;
  }

  .tour-stop,
  .tour-stop.is-featured {
    width: min(56%, 400px);
    margin-top: 108px;
  }

  .tour-stop h3 {
    font-size: 2.5rem;
  }

  .drop-head,
  .merch-grid,
  .drop-note {
    padding-inline: 26px;
  }

  .drop-shop {
    margin-inline: 26px;
  }

  .merch-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .merch-card p {
    font-size: 0.66rem;
  }

  .archive,
  .footer {
    padding-inline: 26px;
  }

  .past-shows {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 26px;
  }

  .footer > a {
    max-width: 420px;
    margin-inline: auto;
  }
}

/* ---- Desktop: one more step up. The road art is 1024px wide, so the shell
   stops at 880 rather than stretching the tile past its own resolution. ---- */
@media (min-width: 1080px) {
  :root {
    --page-width: 880px;
  }

  .hero-ticket {
    bottom: 7rem;
    width: min(52%, 460px);
  }

  .hero-ticket h1 {
    font-size: 3.7rem;
  }

  .tour-stop,
  .tour-stop.is-featured {
    width: min(48%, 420px);
  }

  .drop-head h2 {
    font-size: 4rem;
  }

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

  .desktop-curtain span {
    font-size: clamp(6rem, 9vw, 11rem);
  }
}

@media (max-width: 374px) {
  .topbar {
    grid-template-columns: 50px 1fr 50px;
    padding-inline: 10px;
  }

  .brand,
  .brand img {
    width: 146px;
  }

  .tour-mark {
    font-size: 0.78rem;
  }

  .hero-ticket {
    right: 3%;
    left: 3%;
    padding-right: 17px;
    padding-left: 17px;
  }

  .hero-ticket h1 {
    font-size: 2.2rem;
  }

  .ticket-stamp {
    right: auto;
    left: 17px;
    width: max-content;
    height: auto;
    font-size: .72rem;
  }

  .hero-ticket__action {
    min-width: 158px;
    font-size: 0.98rem;
  }

  .tour-stop {
    width: 94%;
  }

  .past-shows strong {
    font-size: 1.18rem;
  }
}

@media (max-height: 720px) {
  .hero-poster-wrap {
    height: 100%;
  }

  .hero-ticket {
    min-height: 0;
    bottom: 4.2rem;
    padding-top: 50px;
  }

  .hero-ticket h1 {
    font-size: 2.15rem;
  }

  .hero-ticket__action {
    margin-top: 12px;
    min-height: 44px;
  }

  .ticket-stamp {
    width: max-content;
    height: auto;
    font-size: .72rem;
  }

  .passport-ticket {
    top: 30%;
    min-height: 206px;
  }

  .passport-ticket h2 {
    font-size: 1.8rem;
  }

  .passport-seal {
    top: 18%;
  }

  .passport-portrait {
    height: 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .motion-ready .tour-stop:not(.is-visible) {
    opacity: 1;
    filter: drop-shadow(7px 8px 0 var(--ink));
    transform: none;
  }
}
  -webkit-text-stroke: 1px var(--ink);
  text-shadow: 3px 3px 0 rgb(17 18 15 / 18%);
