:root {
  --acid: #dfff00;
  --blue: #5964ff;
  --blue-soft: #aeb8ff;
  --pink: #ff5c9f;
  --paper: #f5f0e8;
  --ink: #0b0b0b;
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  background: var(--acid);
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--acid);
  color: var(--ink);
  font-family: "Archivo Black", Arial, sans-serif;
}

body.intro-running { overflow: hidden; }

main { min-height: 100%; }

main > section {
  height: 100vh;
  height: 100svh;
  min-height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

a {
  color: inherit;
  text-decoration: none;
}

button { font: inherit; }

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(18px, 2.4vw, 34px) clamp(20px, 3vw, 46px);
  pointer-events: none;
  transition: opacity 320ms ease, transform 420ms cubic-bezier(.16, 1, .3, 1);
}

.site-header > * { pointer-events: auto; }

.js:not(.intro-complete) .site-header {
  opacity: 0;
  transform: translateY(-14px);
}

.nav-mark {
  font-size: clamp(22px, 2vw, 31px);
  line-height: .8;
  letter-spacing: -.07em;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 240ms ease, transform 360ms cubic-bezier(.16, 1, .3, 1);
}

.nav-mark span { color: var(--blue); }

.past-hero .nav-mark {
  opacity: 1;
  transform: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 2px solid var(--ink);
  background: rgba(245, 240, 232, .9);
  box-shadow: 5px 5px 0 var(--ink);
  backdrop-filter: blur(12px);
}

.site-nav a {
  padding: .7em .9em .62em;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: clamp(9px, .85vw, 12px);
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

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

.site-nav .nav-booking { background: var(--acid); }
.site-nav .nav-booking:hover,
.site-nav .nav-booking:focus-visible { background: var(--pink); color: var(--ink); }

.identity {
  position: relative;
  height: 100svh;
  min-height: 100svh;
  background: var(--acid);
}

.identity-stage {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  perspective: 1200px;
}

.brand {
  position: absolute;
  z-index: 40;
  top: clamp(22px, 3vw, 46px);
  left: clamp(22px, 3vw, 46px);
  display: flex;
  align-items: flex-end;
  margin: 0;
  font-size: clamp(27px, 3.2vw, 54px);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.065em;
  white-space: nowrap;
  pointer-events: none;
}

.identity-backdrop {
  --backdrop-x: 0px;
  --backdrop-y: 0px;
  --backdrop-scale: 1;
  position: absolute;
  z-index: 0;
  top: 34%;
  left: 50%;
  color: rgba(89, 100, 255, .2);
  font-size: clamp(150px, min(25vw, 45vh), 430px);
  line-height: .72;
  letter-spacing: -.085em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  transform:
    translate3d(calc(-50% + var(--backdrop-x)), calc(-50% + var(--backdrop-y)), 0)
    scale(var(--backdrop-scale));
  transform-origin: center;
  will-change: transform;
}

.identity-backdrop span {
  display: block;
  -webkit-text-stroke: clamp(2px, .28vw, 5px) var(--blue);
  paint-order: stroke fill;
  transition: opacity 620ms ease, transform 720ms cubic-bezier(.16, 1, .3, 1);
}

.js .identity-backdrop span {
  opacity: 0;
  transform: translateY(22px) scale(.985);
}

.js.intro-complete .identity-backdrop span {
  opacity: 1;
  transform: none;
  transition-delay: 160ms;
}

.page-label {
  width: max-content;
  margin: 0;
  padding: .55em .75em .48em;
  border: 1.5px solid currentColor;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: clamp(8px, .85vw, 12px);
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.identity-label {
  position: absolute;
  z-index: 32;
  top: clamp(78px, 11vh, 108px);
  left: clamp(24px, 3vw, 46px);
  border-color: var(--ink);
  background: var(--pink);
  color: var(--ink);
  pointer-events: none;
  transition: opacity 380ms ease 240ms, transform 520ms cubic-bezier(.16, 1, .3, 1) 240ms;
}

.js:not(.intro-complete) .identity-label {
  opacity: 0;
  transform: translateY(12px);
}

.brand-word,
.brand-dot {
  transition:
    opacity 260ms ease,
    transform 520ms cubic-bezier(.16, 1, .3, 1);
}

.brand-art { color: var(--blue); }

.brand-dot {
  width: .22em;
  height: .22em;
  margin: 0 .045em .03em .075em;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 .045em var(--ink);
  transform-origin: 50% 50%;
}

.js .brand-word { opacity: 0; }
.js .brand-falgon { transform: translateX(18px); }
.js .brand-art { transform: translateX(-18px); }
.js .brand-dot { opacity: 0; transform: scale(.25); }

.js.intro-merged .brand-word,
.js.intro-merged .brand-dot,
.js.intro-complete .brand-word,
.js.intro-complete .brand-dot {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.artwork-shell {
  --stage-rx: 0deg;
  --stage-ry: 0deg;
  --stage-scale: 1;
  position: absolute;
  z-index: 10;
  left: 50%;
  bottom: -2.5%;
  width: min(100vw, 1640px);
  aspect-ratio: 1448 / 1086;
  transform:
    translateX(-50%)
    rotateX(var(--stage-rx))
    rotateY(var(--stage-ry))
    scale(var(--stage-scale));
  transform-origin: 52% 72%;
  transform-style: preserve-3d;
  transition: transform 160ms ease-out;
  will-change: transform;
}

.artwork,
.drawing-stack {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.artwork { overflow: visible; }

.final-plane {
  opacity: 1;
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity 180ms ease, transform 160ms ease-out;
  will-change: transform;
}

.js .final-plane { opacity: 0; }
.js.intro-complete .final-plane { opacity: 1; }

.depth-dj {
  transform: translate3d(var(--dj-x, 0), var(--dj-y, 0), 0);
}

.depth-controls {
  transform: translate3d(var(--controls-x, 0), var(--controls-y, 0), 0);
}

.depth-flower {
  transform: translate3d(var(--flower-x, 0), var(--flower-y, 0), 0);
}

.depth-camera {
  transform: translate3d(var(--camera-x, 0), var(--camera-y, 0), 0);
}

.drawing-stack {
  z-index: 5;
  display: none;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.js .drawing-stack { display: block; }
.js.intro-complete .drawing-stack { opacity: 0; }

.drawing-stack canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.pen-dots {
  position: absolute;
  z-index: 50;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.pen-dot {
  --dot-color: var(--ink);
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--dot-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--acid) 72%, transparent);
  opacity: 0;
  transform: translate3d(-30px, -30px, 0);
  will-change: transform, opacity;
}

.pen-dot.is-active { opacity: 1; }
.pen-dot-flower { --dot-color: var(--pink); }
.pen-dot-decks { --dot-color: var(--paper); }
.pen-dot-hands { --dot-color: var(--blue-soft); }
.pen-dot-camera { --dot-color: var(--blue); }
.intro-merged .pen-dot {
  opacity: 0;
  transition: opacity 140ms ease 80ms;
}
.intro-complete .pen-dot { opacity: 0; }

.record-section {
  position: relative;
  height: 100svh;
  min-height: 100svh;
  background:
    radial-gradient(circle at 72% 44%, rgba(89, 100, 255, .09), transparent 32%),
    var(--paper);
}

.record-stage {
  position: relative;
  display: grid;
  width: 100%;
  height: 100vh;
  height: 100svh;
  place-items: center;
  overflow: hidden;
  perspective: 1300px;
}

.record-catalog {
  position: absolute;
  z-index: 5;
  top: clamp(78px, 11vh, 108px);
  left: clamp(24px, 3vw, 46px);
  background: var(--acid);
  transform: rotate(1deg);
}

.record-scene {
  --cover-size: clamp(470px, min(68vh, 48vw), 640px);
  --record-x: 76%;
  --record-angle: -360deg;
  position: relative;
  width: min(94vw, 1220px);
  height: min(84vh, 760px);
  transform-style: preserve-3d;
}

.js .record-scene {
  --record-x: 280%;
  --record-angle: 0deg;
}

.record-cover {
  position: absolute;
  top: 50%;
  left: 3%;
  width: var(--cover-size);
  aspect-ratio: 1;
}

.vinyl {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 3%;
  width: calc(var(--cover-size) * .9);
  aspect-ratio: 1;
  transform: translate3d(var(--record-x), -50%, -25px);
  transform-origin: 50% 50%;
  will-change: transform;
}

.vinyl-disc {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid #050505;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 32%, rgba(255, 255, 255, .055) 32.2% 32.45%, transparent 32.7% 39%, rgba(255, 255, 255, .045) 39.2% 39.45%, transparent 39.7% 46%, rgba(255, 255, 255, .035) 46.2% 46.45%, transparent 46.7%),
    repeating-radial-gradient(circle, rgba(255, 255, 255, .025) 0 .7px, rgba(0, 0, 0, .32) .8px 2px, transparent 2.1px 3.5px),
    radial-gradient(circle at 38% 31%, #262626 0, #111 33%, #060606 70%, #010101 100%);
  box-shadow:
    0 28px 48px rgba(11, 11, 11, .24),
    0 8px 16px rgba(11, 11, 11, .18),
    inset 0 0 32px rgba(0, 0, 0, .55);
  transform: rotate(var(--record-angle));
  will-change: transform;
}

.vinyl-disc::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(from 25deg, transparent 0 10%, rgba(255, 255, 255, .1) 15%, transparent 24% 57%, rgba(89, 100, 255, .1) 63%, transparent 72%);
  content: "";
  mix-blend-mode: screen;
  opacity: .8;
}

.vinyl-label {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: linear-gradient(125deg, var(--paper) 0 66%, var(--acid) 66% 100%);
  box-shadow:
    0 0 0 3px var(--pink),
    0 0 0 4px var(--ink),
    inset 0 0 0 1px rgba(11, 11, 11, .18);
  transform: translate(-50%, -50%);
}

.vinyl-label::before {
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(11, 11, 11, .35);
  border-radius: 50%;
  content: "";
}

.label-copy {
  position: absolute;
  z-index: 3;
  inset: 2%;
  width: 96%;
  height: 96%;
  overflow: visible;
  fill: none;
}

.label-copy path { fill: none; }

.label-copy text {
  fill: var(--ink);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 5.2px;
  font-weight: 800;
  letter-spacing: .35px;
  paint-order: stroke fill;
  stroke: rgba(245, 240, 232, .72);
  stroke-width: .7px;
  text-transform: uppercase;
}

.label-copy .label-copy-bottom {
  font-size: 4.5px;
  letter-spacing: .7px;
}

.label-portrait {
  position: absolute;
  z-index: 2;
  inset: 20%;
  overflow: hidden;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: var(--blue-soft);
}

.label-portrait img {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 150%;
  max-width: none;
  filter: contrast(1.13);
  transform: translate(-50%, -50%);
}

.record-cover {
  z-index: 2;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: clamp(8px, 1.15vw, 14px);
  overflow: hidden;
  padding: clamp(25px, 3vw, 40px);
  border: 4px solid var(--ink);
  background:
    repeating-linear-gradient(7deg, transparent 0 3px, rgba(245, 240, 232, .028) 3px 4px),
    repeating-linear-gradient(83deg, transparent 0 9px, rgba(11, 11, 11, .025) 9px 10px),
    linear-gradient(155deg, #6570ff 0%, var(--blue) 62%, #4b55e5 100%);
  box-shadow:
    inset 0 0 0 3px var(--paper),
    inset 0 0 0 6px var(--ink),
    18px 20px 0 var(--ink),
    28px 36px 50px rgba(11, 11, 11, .15);
  transform: translate3d(0, -50%, 35px);
  transform-style: preserve-3d;
  container-type: inline-size;
}

.record-cover::before {
  position: absolute;
  right: -16%;
  bottom: -10%;
  width: 62%;
  aspect-ratio: 1;
  border: clamp(10px, 1.3vw, 18px) solid var(--pink);
  border-radius: 50%;
  content: "";
  opacity: .48;
}

.record-cover::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0 0, rgba(11, 11, 11, .1), transparent 18%),
    radial-gradient(circle at 100% 100%, rgba(11, 11, 11, .12), transparent 22%);
  content: "";
  pointer-events: none;
  mix-blend-mode: multiply;
}

.record-cover > * {
  position: relative;
  z-index: 1;
}

.cover-stamps {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.cover-stamps span {
  padding: .34em .62em;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: clamp(7px, 1.7cqw, 11px);
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.cover-stamps span:first-child { transform: rotate(-1.2deg); }
.cover-stamps span:last-child { transform: rotate(1deg); color: var(--blue); }

.cover-header {
  padding: 0 3%;
  text-align: center;
}

.cover-header p {
  margin: 0;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: clamp(7px, 1.55cqw, 10px);
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.cover-header h2 {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .18em;
  margin: .06em 0 .03em;
  font-size: clamp(28px, 8.2cqw, 53px);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.cover-header h2 span {
  color: transparent;
  -webkit-text-stroke: clamp(1px, .28cqw, 2px) var(--ink);
}

.cover-header h2 strong { color: var(--acid); font-weight: 400; }
.cover-header .cover-subtitle { color: var(--paper); }

.schedule-tabs { display: none; }

.cover-schedule {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(10px, 2.4cqw, 16px);
  min-height: 0;
}

.schedule-side {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
}

.schedule-side h3 {
  display: flex;
  align-items: center;
  gap: .48em;
  margin: 0 0 .7em;
  padding: .38em 0;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: clamp(8px, 2cqw, 13px);
  font-weight: 400;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.schedule-side h3 small {
  margin-left: auto;
  color: var(--paper);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: .66em;
  letter-spacing: .07em;
  white-space: nowrap;
}

.date-list {
  display: grid;
  align-content: space-between;
  gap: clamp(5px, 1.6cqw, 10px);
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.date-list li { min-width: 0; }

.date-row {
  display: grid;
  grid-template-columns: auto auto minmax(0, auto) minmax(8px, 1fr) auto;
  align-items: baseline;
  gap: .42em;
  min-width: 0;
  font-family: Arial, sans-serif;
  font-size: clamp(7px, 1.72cqw, 11px);
  text-transform: uppercase;
}

.track-num,
.date-row time,
.date-row > span:last-child {
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-weight: 800;
}

.track-num { color: var(--acid); }
.schedule-past .track-num { color: var(--pink); }
.date-row time { color: var(--paper); }

.date-row strong {
  overflow: hidden;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.date-leader {
  align-self: end;
  height: 1px;
  margin-bottom: .3em;
  background-image: radial-gradient(circle, var(--ink) 1px, transparent 1.2px);
  background-position: 0 50%;
  background-repeat: repeat-x;
  background-size: 5px 3px;
  opacity: .55;
}

.date-list p {
  margin: .24em 0 0;
  padding-left: 2.1em;
  color: rgba(11, 11, 11, .78);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: clamp(6px, 1.35cqw, 9px);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.2;
  text-transform: uppercase;
}

.cover-notes {
  padding-top: .65em;
  border-top: 3px double var(--ink);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  text-align: center;
  text-transform: uppercase;
}

.cover-notes p {
  margin: .2em 0;
  font-size: clamp(5.5px, 1.2cqw, 8px);
  font-weight: 700;
  letter-spacing: .05em;
}

.section-shell {
  width: min(100% - clamp(32px, 7vw, 112px), 1320px);
  margin: 0 auto;
}

.listen-section {
  position: relative;
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 92, 159, .2), transparent 26%),
    repeating-linear-gradient(87deg, transparent 0 11px, rgba(245, 240, 232, .018) 11px 12px),
    var(--ink);
  color: var(--paper);
}

.listen-section .section-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(24px, 4vh, 42px);
  height: 100%;
  padding-top: clamp(78px, 11vh, 108px);
  padding-bottom: clamp(32px, 5vh, 58px);
}

.listen-section::before {
  position: absolute;
  top: 14%;
  right: -13vw;
  width: min(52vw, 720px);
  aspect-ratio: 1;
  border: clamp(18px, 2.2vw, 34px) solid rgba(223, 255, 0, .1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.listen-heading {
  display: grid;
  grid-template-columns: minmax(180px, .55fr) minmax(0, 1.45fr);
  align-items: start;
  gap: clamp(40px, 7vw, 110px);
  margin-bottom: 0;
}

.listen-label {
  color: var(--acid);
}

.listen-heading > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .42fr);
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
}

.listen-heading h2 {
  margin: 0;
  font-size: clamp(68px, 9.2vw, 150px);
  font-weight: 400;
  line-height: .71;
  letter-spacing: -.09em;
}

.listen-heading h2 span {
  color: var(--acid);
  -webkit-text-stroke: clamp(1px, .15vw, 2px) var(--acid);
}

.listen-heading > div > p {
  margin: 0;
  color: rgba(245, 240, 232, .72);
  font-family: Arial, sans-serif;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 600;
  line-height: 1.45;
}

.soundcloud-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 72px);
  min-height: 0;
  height: 100%;
  overflow: hidden;
  padding: clamp(28px, 5vw, 72px);
  border: 3px solid var(--paper);
  background:
    linear-gradient(135deg, transparent 0 58%, var(--pink) 58% 72%, transparent 72%),
    var(--blue);
  color: var(--paper);
  box-shadow: 14px 16px 0 var(--acid);
  transition: transform 280ms cubic-bezier(.16, 1, .3, 1), box-shadow 280ms cubic-bezier(.16, 1, .3, 1);
}

.soundcloud-card::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(44%, 420px);
  aspect-ratio: 1;
  border: clamp(18px, 2.5vw, 34px) solid rgba(245, 240, 232, .18);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.soundcloud-card::after {
  position: absolute;
  top: clamp(24px, 4vw, 54px);
  right: clamp(24px, 4vw, 54px);
  width: clamp(56px, 8vw, 112px);
  height: clamp(56px, 8vw, 112px);
  border: 3px solid var(--ink);
  background: var(--acid);
  content: "SC";
  color: var(--ink);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: clamp(18px, 2.5vw, 34px);
  font-weight: 900;
  line-height: clamp(56px, 8vw, 112px);
  text-align: center;
  transform: rotate(4deg);
}

.soundcloud-card > * {
  position: relative;
  z-index: 1;
}

.soundcloud-card:hover,
.soundcloud-card:focus-visible {
  box-shadow: 20px 22px 0 var(--pink);
  outline: none;
  transform: translate(-5px, -6px);
}

.soundcloud-card p {
  margin: 0 0 .7em;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: clamp(10px, 1vw, 14px);
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.soundcloud-card h3 {
  margin: 0;
  font-size: clamp(74px, 13vw, 210px);
  font-weight: 400;
  line-height: .68;
  letter-spacing: -.09em;
  text-transform: uppercase;
}

.soundcloud-card > span {
  display: flex;
  align-items: center;
  gap: .6em;
  padding: .7em .85em .62em;
  border: 2px solid var(--ink);
  background: var(--acid);
  color: var(--ink);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: clamp(10px, 1.1vw, 15px);
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.soundcloud-card > span i {
  color: var(--pink);
  font-size: 1.4em;
  font-style: normal;
}

.booking-section {
  position: relative;
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  padding: 0;
  background:
    repeating-linear-gradient(7deg, transparent 0 5px, rgba(11, 11, 11, .018) 5px 6px),
    var(--blue-soft);
}

.booking-shell {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  height: 100%;
  padding-top: clamp(78px, 11vh, 108px);
}

.booking-label {
  align-self: start;
  background: var(--paper);
  color: var(--ink);
}

.booking-band {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(30px, 6vw, 90px);
  align-self: center;
  margin: clamp(24px, 4vh, 42px) 0;
  padding: clamp(30px, 4.5vw, 68px);
  border: 4px solid var(--ink);
  background: var(--acid);
  box-shadow: 15px 18px 0 var(--ink);
}

.booking-band p {
  margin: 0 0 1em;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: clamp(9px, 1vw, 13px);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.booking-band h2 {
  max-width: 16em;
  margin: 0;
  font-size: clamp(30px, 4.2vw, 66px);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.booking-band > a {
  display: flex;
  align-items: center;
  gap: .5em;
  padding-bottom: .12em;
  border-bottom: clamp(3px, .3vw, 5px) solid var(--ink);
  font-size: clamp(22px, 3.2vw, 48px);
  line-height: .9;
  letter-spacing: -.06em;
  transition: color 180ms ease, transform 240ms ease;
}

.booking-band > a:hover,
.booking-band > a:focus-visible {
  color: var(--blue);
  outline: none;
  transform: translateX(6px);
}

.booking-band > a span { color: var(--pink); }

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0 30px;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: clamp(9px, .9vw, 12px);
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: none;
}

.site-footer p { margin: 0; }

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 720ms cubic-bezier(.16, 1, .3, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 899px) {
  .listen-heading { grid-template-columns: 1fr; }
  .listen-heading > div { grid-template-columns: minmax(0, 1fr) minmax(210px, .48fr); }

  .booking-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-aspect-ratio: 4/5) {
  .artwork-shell {
    bottom: 9vh;
    width: 108vw;
  }

  .identity-backdrop {
    top: 56%;
    font-size: clamp(88px, 28vw, 190px);
    letter-spacing: -.075em;
  }

  .record-scene {
    --cover-size: min(76vh, 84vw, 560px);
    width: 100vw;
    height: 82vh;
  }

  .vinyl,
  .record-cover { left: 3vw; }
}

@media (max-width: 639px) {
  .site-header {
    top: auto;
    bottom: 0;
    justify-content: center;
    padding: 0 10px 10px;
  }

  .nav-mark { display: none; }

  .site-nav {
    justify-content: stretch;
    gap: 2px;
    width: min(100%, 470px);
    padding: 3px;
    border-color: var(--paper);
    background: var(--ink);
    box-shadow: 5px 5px 0 rgba(89, 100, 255, .7);
    backdrop-filter: none;
  }

  .site-nav a {
    flex: 1;
    padding: .9em .45em .82em;
    color: var(--paper);
    font-size: 8.5px;
    text-align: center;
  }

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

  .identity { min-height: 100svh; }

  .identity-backdrop {
    top: 20%;
    font-size: clamp(82px, 24vw, 104px);
  }

  .artwork-shell {
    top: 7%;
    bottom: auto;
    width: 115vw;
  }

  .identity-label {
    top: 68px;
    left: 16px;
    font-size: 7.5px;
  }

  .record-section { min-height: 100svh; }

  .record-catalog {
    top: 18px;
    left: 16px;
    font-size: 7.5px;
  }

  .record-scene {
    --cover-size: 88vw;
    width: 100vw;
    height: 74vh;
  }

  .schedule-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
  }

  .record-cover { grid-template-rows: auto auto auto 1fr auto; }

  .schedule-tabs button {
    min-height: 44px;
    padding: .65em .5em .55em;
    border: 1.5px solid var(--ink);
    background: rgba(245, 240, 232, .2);
    color: var(--ink);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: clamp(8px, 2.3cqw, 10px);
    font-weight: 900;
    letter-spacing: .05em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
  }

  .schedule-tabs button[aria-selected="true"] { background: var(--acid); }
  .schedule-tabs button:last-child[aria-selected="true"] { background: var(--pink); }
  .schedule-tabs button:focus-visible { outline: 2px solid var(--paper); outline-offset: 2px; }

  .cover-schedule { display: block; }
  .schedule-side:not(.is-active) { display: none; }
  .schedule-side h3 { display: none; }

  .date-list { gap: clamp(7px, 2.6cqw, 11px); }
  .date-row { gap: .42em; font-size: clamp(8.5px, 2.65cqw, 10.5px); }
  .date-list p { padding-left: 2em; font-size: clamp(7px, 2.15cqw, 8.5px); }
  .cover-notes p:nth-child(n + 2) { display: none; }

  .section-shell { width: min(100% - 32px, 1320px); }

  .listen-section { padding: 0; }

  .listen-section .section-shell {
    gap: 18px;
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .listen-heading {
    gap: 22px;
    margin-bottom: 0;
  }

  .listen-heading > div { grid-template-columns: 1fr; gap: 26px; }
  .listen-heading h2 { font-size: clamp(61px, 19vw, 92px); }
  .listen-heading > div > p { max-width: 34rem; }

  .soundcloud-card {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 0;
    padding: 26px 22px;
    box-shadow: 9px 11px 0 var(--acid);
  }

  .soundcloud-card::before { width: 78%; }
  .soundcloud-card::after {
    top: 22px;
    right: 22px;
    width: 62px;
    height: 62px;
    font-size: 20px;
    line-height: 62px;
  }

  .soundcloud-card h3 { font-size: clamp(56px, 19vw, 96px); }
  .soundcloud-card > span { align-self: stretch; justify-content: space-between; }

  .booking-section { padding: 0; }

  .booking-shell { padding-top: 64px; }

  .booking-band {
    padding: 26px 22px;
    border-width: 3px;
    box-shadow: 9px 11px 0 var(--ink);
  }

  .booking-band h2 { font-size: clamp(28px, 8vw, 40px); }
  .booking-band > a { max-width: 100%; font-size: clamp(17px, 5vw, 24px); white-space: nowrap; }

  .site-footer {
    padding: 20px 0 72px;
  }
}

@media (max-width: 520px) {
  .brand { font-size: 30px; }

  .pen-dot {
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    border-width: 1.5px;
  }

  .record-section { min-height: 100svh; }

  .record-scene {
    --cover-size: 88vw;
    height: 72vh;
  }

  .js .record-scene { --record-x: 145%; }

  .vinyl,
  .record-cover { left: 3vw; }

  .record-cover {
    gap: 6px;
    padding: clamp(13px, 4vw, 18px);
    border-width: 3px;
    box-shadow:
      inset 0 0 0 2px var(--paper),
      inset 0 0 0 4px var(--ink),
      10px 12px 0 var(--ink),
      18px 24px 34px rgba(11, 11, 11, .14);
  }

  .cover-schedule { gap: 7px; }
  .date-row { gap: .3em; }
  .date-list p { padding-left: 1.8em; }
}

@media (max-width: 380px) {
  .site-nav a { padding-inline: .3em; font-size: 7.8px; }
  .record-scene { --cover-size: 86vw; }
  .cover-stamps span { font-size: 6.5px; }
  .cover-header h2 { font-size: clamp(25px, 8.7cqw, 34px); }
  .date-row { font-size: clamp(8px, 2.75cqw, 9.5px); }
  .date-list p { display: none; }
}

@media (max-height: 600px) and (orientation: landscape) {
  .record-scene {
    --cover-size: min(80svh, 48vw, 560px);
    height: 88svh;
  }

  .date-list p,
  .cover-notes p:last-child { display: none; }

  .listen-section .section-shell {
    gap: 12px;
    padding-top: 54px;
    padding-bottom: 20px;
  }

  .listen-heading {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 28px;
  }

  .listen-heading > div { grid-template-columns: 1fr; gap: 0; }
  .listen-heading h2 { font-size: clamp(46px, 8vw, 74px); }
  .listen-heading > div > p { display: none; }

  .soundcloud-card {
    align-items: flex-end;
    flex-direction: row;
    padding: 18px 22px;
  }

  .soundcloud-card::after {
    top: 14px;
    right: 14px;
    width: 48px;
    height: 48px;
    font-size: 16px;
    line-height: 48px;
  }

  .soundcloud-card h3 { font-size: clamp(48px, 9vw, 78px); }

  .booking-shell { padding-top: 54px; }

  .booking-band {
    margin: 16px 0;
    padding: 22px 28px;
  }

  .booking-band h2 { font-size: clamp(26px, 4.2vw, 42px); }
  .booking-band > a { font-size: clamp(19px, 2.8vw, 34px); }
  .site-footer { padding: 10px 0 18px; }
}

@media (max-width: 639px) and (max-height: 600px) and (orientation: landscape) {
  .listen-section .section-shell {
    padding-top: 34px;
    padding-bottom: 62px;
  }

  .listen-heading { gap: 18px; }
  .soundcloud-card > span { align-self: auto; }
  .booking-shell { padding-top: 34px; }
  .site-footer { padding-bottom: 62px; }
}

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

  .drawing-stack,
  .pen-dots { display: none !important; }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
