@font-face {
  font-family: 'Recoleta';
  src: url('assets/fonts/recoleta-regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Recoleta';
  src: url('assets/fonts/recoleta-semibold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Recoleta';
  src: url('assets/fonts/recoleta-black.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: 'Summer of 76';
  src: url('assets/fonts/summer-of-76.otf') format('opentype');
  font-display: swap;
}

@font-face {
  font-family: 'Perfectly Vintages';
  src: url('assets/fonts/perfectly-vintages.otf') format('opentype');
  font-display: swap;
}

@font-face {
  font-family: 'Frito Vandito';
  src: url('assets/fonts/frito-vandito.otf') format('opentype');
  font-display: swap;
}

:root {
  --black: #050505;
  --black-2: #0b0a0a;
  --cream: #f0dfbd;
  --cream-light: #fff4dc;
  --gold: #e8af1c;
  --gold-pale: #ffd55c;
  --brown: #4d1d03;
  --cyan: #44e5ef;
  --pink: #ff3cae;
  --white: #fff9ef;
  --line-dark: rgba(17, 12, 7, .2);
  --line-light: rgba(255, 249, 239, .24);
  --page-pad: clamp(22px, 4.4vw, 74px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--black);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: 'Recoleta', Georgia, serif;
  text-rendering: optimizeLegibility;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

.js body:not(.is-ready) {
  overflow: hidden;
}

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

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

.social-symbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.social-icon {
  display: block;
  width: 18px;
  height: 18px;
}

.social-links,
.header-controls {
  display: flex;
  align-items: center;
}

.social-links {
  gap: 7px;
}

.header-controls {
  gap: 14px;
}

.social-icon-link {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 249, 239, .28);
  border-radius: 50%;
  color: rgba(255, 249, 239, .78);
  transition: background .3s ease, border-color .3s ease, color .3s ease, transform .3s ease;
}

.social-icon-link:hover {
  border-color: var(--gold-pale);
  background: var(--gold-pale);
  color: var(--black);
  transform: translateY(-2px);
}

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

button {
  color: inherit;
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 5px;
}

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

figure,
p,
h1,
h2,
ul {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 14px;
  left: 14px;
  padding: 11px 14px;
  background: var(--white);
  color: var(--black);
  font-family: Arial, sans-serif;
  font-size: 13px;
  transform: translateY(-150%);
}

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

.noise {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: .11;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.48'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.loader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 16px;
  background: var(--black);
  color: var(--cream);
  text-align: center;
  transition: clip-path 1s cubic-bezier(.76, 0, .24, 1), visibility 1s;
  clip-path: inset(0 0 0 0);
}

.loader::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(232, 175, 28, .1), transparent 34%);
  content: '';
}

.loader p {
  position: relative;
  font-family: 'Frito Vandito', 'Recoleta', serif;
  font-size: clamp(24px, 3vw, 46px);
  letter-spacing: .03em;
}

.loader small {
  position: relative;
  font-family: 'Summer of 76', Arial, sans-serif;
  font-size: 9px;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.loader-line {
  position: relative;
  width: min(48vw, 280px);
  height: 1px;
  overflow: hidden;
  background: rgba(240, 223, 189, .18);
}

.loader-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: load-line 1.2s cubic-bezier(.76, 0, .24, 1) both;
  transform-origin: left;
}

.is-ready .loader {
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
}

.scroll-progress {
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--gold), var(--pink));
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--page-pad);
  font-family: 'Summer of 76', Arial, sans-serif;
  transition: padding .35s ease, background .35s ease, backdrop-filter .35s ease;
}

.site-header.is-scrolled {
  padding-top: 15px;
  padding-bottom: 15px;
  background: rgba(5, 5, 5, .82);
  backdrop-filter: blur(18px);
}

.header-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.header-brand b {
  color: var(--gold-pale);
  font-size: 18px;
  letter-spacing: .1em;
}

.header-brand span {
  color: rgba(255, 249, 239, .64);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .25em;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3.4vw, 56px);
}

.site-header nav a {
  position: relative;
  padding: 8px 0;
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: '';
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

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

.menu-toggle {
  display: none;
  border: 0;
  padding: 9px 0 9px 12px;
  background: transparent;
  cursor: pointer;
  font-family: 'Summer of 76', Arial, sans-serif;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.menu-toggle i {
  display: inline-block;
  width: 22px;
  height: 1px;
  margin-left: 9px;
  background: currentColor;
  vertical-align: middle;
  transition: transform .3s ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #020608;
  --hero-frame-clearance: clamp(32px, 3vw, 52px);
}

.hero-media {
  position: absolute;
  z-index: -5;
  inset: -7%;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.04);
  will-change: transform;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(.9) contrast(1.14) brightness(.73);
  transform: translate3d(-.8%, .35%, 0) scale(1.08);
  will-change: transform;
  animation: hero-cinema 24s cubic-bezier(.45, 0, .55, 1) infinite alternate;
}

.hero-shade {
  position: absolute;
  z-index: -4;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 4, 5, .68) 0%, rgba(2, 4, 5, .14) 29%, rgba(2, 4, 5, .035) 54%, rgba(2, 4, 5, .82) 100%),
    linear-gradient(90deg, rgba(2, 4, 5, .46), transparent 28%, transparent 72%, rgba(2, 4, 5, .46)),
    radial-gradient(ellipse at 50% 54%, rgba(2, 4, 5, .18), transparent 50%),
    radial-gradient(circle at 68% 33%, rgba(232, 175, 28, .1), transparent 38%);
}

.hero-beam {
  position: absolute;
  z-index: -2;
  top: 18%;
  width: 10vw;
  height: 85vh;
  pointer-events: none;
  opacity: .2;
  filter: blur(14px);
  mix-blend-mode: screen;
  transform-origin: top;
}

.hero-beam-a {
  left: 22%;
  background: linear-gradient(180deg, rgba(68, 229, 239, .6), transparent 70%);
  transform: rotate(-23deg) skewX(-8deg);
  animation: beam-a 9s ease-in-out infinite alternate;
}

.hero-beam-b {
  right: 20%;
  background: linear-gradient(180deg, rgba(255, 60, 174, .55), transparent 72%);
  transform: rotate(20deg) skewX(8deg);
  animation: beam-b 11s ease-in-out infinite alternate;
}

.hero-reflections {
  position: absolute;
  z-index: -3;
  inset: -20%;
  overflow: hidden;
  pointer-events: none;
  opacity: .43;
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse 72% 66% at 51% 51%, #000 10%, rgba(0, 0, 0, .82) 49%, transparent 82%);
  mask-image: radial-gradient(ellipse 72% 66% at 51% 51%, #000 10%, rgba(0, 0, 0, .82) 49%, transparent 82%);
}

.hero-reflections::before,
.hero-reflections::after {
  position: absolute;
  inset: -10%;
  content: '';
  will-change: transform;
}

.hero-reflections::before {
  background:
    radial-gradient(circle at 17px 19px, rgba(255, 255, 255, .95) 0 1.3px, rgba(255, 255, 255, .28) 2px, transparent 5px) 0 0 / 97px 83px,
    radial-gradient(circle at 54px 49px, rgba(255, 244, 218, .84) 0 1px, rgba(232, 175, 28, .21) 2px, transparent 4.5px) 0 0 / 137px 119px;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, .66));
  animation: hero-reflections-a 20s linear infinite;
}

.hero-reflections::after {
  background:
    radial-gradient(circle at 28px 31px, rgba(220, 251, 255, .72) 0 1px, rgba(68, 229, 239, .18) 2.2px, transparent 6px) 0 0 / 149px 131px,
    radial-gradient(circle at 91px 76px, rgba(255, 255, 255, .62) 0 1.6px, transparent 5.5px) 0 0 / 181px 163px;
  filter: drop-shadow(0 0 6px rgba(68, 229, 239, .42));
  animation: hero-reflections-b 29s linear infinite reverse;
}

.hero-frame {
  position: absolute;
  z-index: 7;
  inset: clamp(82px, 11vh, 116px) var(--page-pad) clamp(30px, 5vh, 52px);
  pointer-events: none;
}

.hero-frame i {
  position: absolute;
  width: 24px;
  height: 24px;
}

.hero-frame i::before,
.hero-frame i::after {
  position: absolute;
  background: rgba(255, 249, 239, .36);
  content: '';
}

.hero-frame i::before {
  width: 100%;
  height: 1px;
}

.hero-frame i::after {
  width: 1px;
  height: 100%;
}

.hero-frame i:nth-child(1) { top: 0; left: 0; }
.hero-frame i:nth-child(2) { top: 0; right: 0; transform: rotate(90deg); }
.hero-frame i:nth-child(3) { right: 0; bottom: 0; transform: rotate(180deg); }
.hero-frame i:nth-child(4) { bottom: 0; left: 0; transform: rotate(270deg); }

.hero-topline {
  position: absolute;
  z-index: 8;
  top: calc(clamp(82px, 11vh, 116px) + clamp(32px, 3.5vh, 44px));
  right: calc(var(--page-pad) + var(--hero-frame-clearance));
  left: calc(var(--page-pad) + var(--hero-frame-clearance));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  font-family: Arial, sans-serif;
  font-size: clamp(7px, .62vw, 10px);
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.hero-topline p:nth-child(2) { text-align: center; }
.hero-topline p:last-child { text-align: right; }

.hero-lockup {
  position: relative;
  z-index: 6;
  display: flex;
  min-height: 100svh;
  align-items: center;
  justify-content: center;
  padding: 10svh 20px 14svh;
}

.hero-wordmark {
  width: auto;
  height: min(60vh, 610px);
  max-width: min(72vw, 820px);
  object-fit: contain;
  filter: drop-shadow(0 22px 42px rgba(0, 0, 0, .75));
  transform: translateY(2.5vh) scale(.82);
  opacity: 0;
  transition: opacity .8s .85s ease, transform 1.35s .65s cubic-bezier(.16, 1, .3, 1);
}

.is-ready .hero-wordmark {
  opacity: 1;
  transform: translateY(2.5vh) scale(1);
}

.hero-bottom {
  position: absolute;
  z-index: 8;
  right: calc(var(--page-pad) + var(--hero-frame-clearance));
  bottom: calc(clamp(30px, 5vh, 52px) + clamp(34px, 4vh, 48px));
  left: calc(var(--page-pad) + var(--hero-frame-clearance));
  display: grid;
  align-items: end;
  grid-template-columns: 1fr auto 1fr;
}

.hero-mantra {
  font-size: clamp(20px, 2.1vw, 33px);
  line-height: 1.02;
}

.hero-rally {
  display: grid;
  justify-items: center;
  text-align: center;
  text-transform: uppercase;
}

.hero-rally span {
  font-family: 'Recoleta', Georgia, serif;
  font-size: clamp(15px, 1.35vw, 22px);
  font-weight: 600;
  letter-spacing: .16em;
  line-height: 1;
}

.hero-rally strong {
  margin-top: 8px;
  color: var(--gold-pale);
  font-family: 'Summer of 76', Arial, sans-serif;
  font-size: clamp(46px, 4.6vw, 78px);
  font-weight: 400;
  letter-spacing: .055em;
  line-height: .82;
  text-shadow: 0 0 28px rgba(232, 175, 28, .22);
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  font-family: 'Summer of 76', Arial, sans-serif;
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hero-cta i {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 249, 239, .42);
  border-radius: 50%;
  color: var(--gold-pale);
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}

.hero-cta:hover i {
  background: var(--gold-pale);
  color: var(--black);
  transform: translateY(4px);
}

.marquee {
  position: relative;
  z-index: 8;
  overflow: hidden;
  border-top: 1px solid #bd8610;
  border-bottom: 1px solid #bd8610;
  background: var(--gold);
  color: var(--brown);
  font-family: 'Summer of 76', Arial, sans-serif;
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee 30s linear infinite;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.marquee-group {
  display: flex;
  width: 100vw;
  flex: 0 0 100vw;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  padding: 13px 30px 11px 0;
  white-space: nowrap;
}

.marquee span {
  font-size: 12px;
  letter-spacing: .24em;
}

.marquee i {
  color: var(--white);
  font-size: 12px;
  font-style: normal;
}

.section-index {
  display: grid;
  align-items: center;
  grid-template-columns: auto minmax(40px, 1fr) auto;
  gap: 16px;
  color: rgba(17, 12, 7, .56);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.section-index i {
  height: 1px;
  background: currentColor;
  opacity: .3;
}

.section-index-light {
  color: rgba(255, 249, 239, .55);
}

.eyebrow {
  font-family: 'Summer of 76', Arial, sans-serif;
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.manifesto {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 11vw, 178px) var(--page-pad) clamp(120px, 14vw, 220px);
  isolation: isolate;
  background: var(--cream);
  color: #100b06;
}

.manifesto::after {
  position: absolute;
  z-index: 0;
  right: -17vw;
  bottom: -29vw;
  width: 56vw;
  height: 56vw;
  border: 1px solid rgba(16, 11, 6, .12);
  border-radius: 50%;
  box-shadow: inset 0 0 0 6vw rgba(16, 11, 6, .025), inset 0 0 0 12vw rgba(16, 11, 6, .02);
  content: '';
}

.manifesto-van {
  position: absolute;
  z-index: 0;
  top: clamp(190px, 15vw, 260px);
  left: 50%;
  width: min(76vw, 1180px);
  max-width: none;
  pointer-events: none;
  opacity: .105;
  filter: sepia(.2) contrast(1.04);
  mix-blend-mode: multiply;
  transform: translate3d(calc(-50% + var(--parallax-x, 0px)), var(--parallax-y, 0px), 0) rotate(calc(-1.8deg + var(--parallax-rotate, 0deg)));
  transform-origin: center;
  will-change: transform;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .94) 72%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .94) 72%, transparent 100%);
}

.manifesto > .section-index,
.manifesto-heading {
  position: relative;
  z-index: 2;
}

.manifesto > .section-index {
  width: min(460px, 42vw);
  margin: 0 0 clamp(80px, 10vw, 150px) auto;
}

.manifesto-heading .eyebrow {
  margin-bottom: 22px;
  color: #8a5d05;
  font-size: clamp(11px, .9vw, 14px);
  letter-spacing: .24em;
}

.statement {
  font-size: clamp(54px, 8.4vw, 140px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .88;
}

.statement span {
  display: block;
  overflow: hidden;
  padding: .09em .035em .16em;
  margin: -.09em -.035em -.16em;
  transform: translateY(45px);
  opacity: 0;
  transition: opacity .8s ease, transform 1.1s cubic-bezier(.16, 1, .3, 1);
}

.statement span:nth-child(2) {
  margin-left: clamp(0px, 7.5vw, 120px);
  transition-delay: .11s;
}

.statement span:nth-child(3) {
  margin-left: clamp(0px, 14vw, 210px);
  transition-delay: .22s;
}

.statement.is-visible span {
  opacity: 1;
  transform: none;
}

.statement em,
.experience-title em,
.signal h2 em,
.archive h2 em,
.contact h2 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px currentColor;
}

.statement em {
  color: transparent;
  -webkit-text-stroke-color: #100b06;
}

.manifesto-grid {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 1380px;
  margin: clamp(90px, 12vw, 190px) auto 0;
  align-items: center;
  grid-template-columns: minmax(260px, .76fr) minmax(420px, 1.38fr) minmax(170px, .52fr);
  gap: clamp(28px, 5vw, 82px);
}

.manifesto-copy {
  align-self: end;
  padding-bottom: 7vh;
}

.manifesto-copy p {
  max-width: 430px;
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.65;
}

.manifesto-copy .lede {
  margin-bottom: 24px;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 600;
  line-height: 1.25;
}

.arrow-link {
  display: grid;
  margin-top: 38px;
  align-items: center;
  grid-template-columns: 1fr auto;
  border-top: 1px solid var(--line-dark);
  padding: 18px 0 0;
  font-family: 'Summer of 76', Arial, sans-serif;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.arrow-link b {
  color: #8a5d05;
  font-family: Arial, sans-serif;
  font-size: 20px;
  transition: transform .25s ease;
}

.arrow-link:hover b {
  transform: translate(4px, 4px);
}

.portrait {
  position: relative;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

.portrait-window {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #090807;
}

.portrait-window::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(0, 0, 0, .54));
  content: '';
}

.portrait-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.72) contrast(1.08);
  transition: transform 1.2s cubic-bezier(.16, 1, .3, 1), filter .8s ease;
}

.portrait:hover img {
  filter: saturate(1) contrast(1.05);
  transform: scale(1.025);
}

.portrait figcaption {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 13px;
  font-family: Arial, sans-serif;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.portrait figcaption i {
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .4;
}

.manifesto-script {
  position: relative;
  z-index: 3;
  top: clamp(0px, calc(28vw - 286px), 92px);
  align-self: center;
  margin-top: 0;
  color: #995707;
  font-family: 'Perfectly Vintages', cursive;
  font-size: clamp(28px, 3.5vw, 56px);
  line-height: .96;
  rotate: -7deg;
}

.manifesto-script::before {
  position: absolute;
  top: -19px;
  left: 3px;
  width: clamp(42px, 4vw, 68px);
  height: 1px;
  background: currentColor;
  content: '';
  opacity: .45;
  transform: rotate(7deg);
}

.chapter-current {
  position: relative;
  z-index: 7;
  height: 0;
  pointer-events: none;
  transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0);
  will-change: transform;
}

.chapter-current::before,
.chapter-current::after {
  position: absolute;
  content: '';
  transform: rotate(-2.4deg);
  transform-origin: center;
}

.chapter-current::before {
  top: -10px;
  left: -12vw;
  width: 124vw;
  height: 1px;
  background: linear-gradient(90deg, transparent 4%, rgba(138, 93, 5, .2) 18%, rgba(138, 93, 5, .72) 43%, rgba(232, 175, 28, .9) 51%, rgba(68, 229, 239, .78) 65%, rgba(68, 229, 239, .14) 84%, transparent 96%);
  box-shadow: 0 0 12px rgba(232, 175, 28, .18);
}

.chapter-current::after {
  top: -12px;
  left: 47%;
  width: 30vw;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 213, 92, .9), rgba(68, 229, 239, .78), transparent);
  filter: drop-shadow(0 0 6px rgba(68, 229, 239, .65));
}

.chapter-current span,
.chapter-current i {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.chapter-current span {
  top: -17px;
  left: 51%;
  width: 13px;
  height: 13px;
  border: 1px solid rgba(255, 213, 92, .9);
  background: var(--cream);
  box-shadow: 0 0 0 5px rgba(232, 175, 28, .08), 0 0 22px rgba(255, 213, 92, .52);
}

.chapter-current i {
  top: -10px;
  left: 72%;
  width: 6px;
  height: 6px;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(68, 229, 239, .08), 0 0 17px rgba(68, 229, 239, .75);
}

.proof {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 10vw, 160px) var(--page-pad) clamp(100px, 12vw, 190px);
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 12%, rgba(68, 229, 239, .13), transparent 32%),
    radial-gradient(circle at 12% 72%, rgba(255, 60, 174, .06), transparent 28%),
    #050708;
  color: var(--white);
}

.proof-ghost {
  position: absolute;
  z-index: 0;
  right: -.08em;
  bottom: -.36em;
  color: var(--cyan);
  font-family: 'Frito Vandito', 'Recoleta', serif;
  font-size: clamp(260px, 38vw, 660px);
  letter-spacing: -.1em;
  line-height: 1;
  opacity: .035;
  pointer-events: none;
  transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0);
  will-change: transform;
}

.proof-disco {
  position: absolute;
  z-index: 1;
  right: -10%;
  bottom: clamp(18px, 3vw, 54px);
  width: 120%;
  height: clamp(520px, 46vw, 780px);
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 73% 58%, rgba(255, 255, 255, .12), transparent 29%),
    radial-gradient(ellipse at 72% 58%, rgba(68, 229, 239, .13), transparent 58%);
  -webkit-mask-image: radial-gradient(ellipse 76% 72% at 70% 58%, #000 16%, rgba(0, 0, 0, .88) 52%, transparent 82%);
  mask-image: radial-gradient(ellipse 76% 72% at 70% 58%, #000 16%, rgba(0, 0, 0, .88) 52%, transparent 82%);
  transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0);
  will-change: transform;
}

.proof-disco::before {
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(circle at 17px 19px, rgba(255, 255, 255, .96) 0 1.8px, rgba(255, 255, 255, .3) 2.4px, transparent 6px) 0 0 / 83px 74px,
    radial-gradient(circle at 49px 43px, rgba(220, 251, 255, .8) 0 1.3px, rgba(68, 229, 239, .2) 2.1px, transparent 5px) 0 0 / 111px 97px;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, .72));
  content: '';
  opacity: .74;
  transform: rotate(-7deg) scale(1.08);
  animation: disco-reflections-a 15s linear infinite;
}

.proof-disco::after {
  position: absolute;
  inset: -16%;
  background:
    radial-gradient(circle at 31px 27px, rgba(255, 255, 255, .92) 0 1.1px, rgba(255, 255, 255, .24) 2px, transparent 5px) 0 0 / 129px 113px,
    radial-gradient(circle at 74px 68px, rgba(255, 255, 255, .7) 0 1.5px, transparent 4.8px) 0 0 / 151px 137px;
  filter: drop-shadow(0 0 7px rgba(68, 229, 239, .52));
  content: '';
  mix-blend-mode: screen;
  opacity: .62;
  transform: rotate(5deg) scale(1.06);
  animation: disco-reflections-b 21s linear infinite reverse;
}

.proof-inner {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
}

.proof .section-index {
  width: min(460px, 42vw);
  margin: 0 0 clamp(80px, 9vw, 140px) auto;
}

.proof-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(320px, .9fr) minmax(420px, 1.1fr);
  column-gap: clamp(55px, 8vw, 140px);
}

.proof .eyebrow {
  margin-bottom: 24px;
  color: var(--cyan);
}

.proof h2 {
  font-size: clamp(64px, 7.6vw, 126px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .88;
}

.proof h2 span,
.proof h2 em {
  display: block;
}

.proof h2 span:nth-child(2) {
  transform: translateY(-.17em);
}

.proof h2 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px var(--cyan);
  filter: drop-shadow(0 0 16px rgba(68, 229, 239, .2));
}

.proof-story {
  max-width: 670px;
  margin-top: clamp(24px, 2vw, 30px);
  border-left: 1px solid rgba(68, 229, 239, .52);
  padding-left: clamp(28px, 4vw, 62px);
}

.proof-story p {
  color: rgba(255, 249, 239, .74);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.6;
}

.proof-story p + p {
  margin-top: 26px;
}

.proof-turn {
  position: relative;
  display: grid;
  overflow: hidden;
  margin-top: clamp(80px, 10vw, 150px);
  padding: clamp(40px, 5vw, 76px);
  border: 1px solid rgba(68, 229, 239, .38);
  background:
    linear-gradient(115deg, rgba(68, 229, 239, .105), transparent 42%),
    rgba(1, 5, 7, .88);
  box-shadow:
    0 0 0 1px rgba(68, 229, 239, .05) inset,
    0 38px 100px rgba(0, 0, 0, .62),
    0 0 70px rgba(68, 229, 239, .09);
  grid-column: 1 / -1;
  grid-template-columns: minmax(180px, .42fr) minmax(520px, 1.58fr);
  gap: clamp(35px, 7vw, 120px);
}

.proof-turn::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 42%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), rgba(68, 229, 239, 0));
  box-shadow: 0 0 17px rgba(68, 229, 239, .88);
  content: '';
}

@media (min-width: 1500px) {
  .manifesto-script {
    top: clamp(96px, calc(19vw - 194px), 108px);
  }
}

.proof-turn::after {
  position: absolute;
  right: -8%;
  bottom: -70%;
  width: 48%;
  aspect-ratio: 1;
  border: 1px solid rgba(68, 229, 239, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 4vw rgba(68, 229, 239, .018), 0 0 0 8vw rgba(68, 229, 239, .014);
  content: '';
}

.proof-turn > * {
  position: relative;
  z-index: 1;
}

.proof-question {
  padding-top: .65em;
  color: var(--cyan);
  font-family: 'Summer of 76', Arial, sans-serif;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.proof-punch {
  position: relative;
  max-width: 1020px;
  margin: 0;
  font-family: 'Recoleta', Georgia, serif;
  font-size: clamp(39px, 4.9vw, 80px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.02;
  text-wrap: balance;
}

.proof-punch::before {
  position: absolute;
  z-index: -1;
  top: -.58em;
  right: -.02em;
  color: var(--cyan);
  content: '“';
  font-family: 'Recoleta', Georgia, serif;
  font-size: 3.1em;
  line-height: 1;
  opacity: .1;
  text-shadow: 0 0 24px rgba(68, 229, 239, .5);
}

.proof-signoff {
  max-width: 810px;
  margin-top: 34px;
  color: rgba(255, 249, 239, .68);
  font-size: clamp(17px, 1.45vw, 23px);
  line-height: 1.5;
}

.proof-signoff strong {
  color: var(--cyan);
  font-family: 'Summer of 76', Arial, sans-serif;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.proof-cta {
  display: inline-flex;
  min-width: min(100%, 290px);
  margin-top: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 1px solid rgba(68, 229, 239, .68);
  padding: 17px 18px 14px;
  color: var(--cyan);
  font-family: 'Summer of 76', Arial, sans-serif;
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: background .3s ease, box-shadow .3s ease, color .3s ease, transform .3s ease;
}

.proof-cta b {
  font-family: Arial, sans-serif;
  font-size: 18px;
  transition: transform .3s ease;
}

.proof-cta:hover {
  background: var(--cyan);
  box-shadow: 0 0 34px rgba(68, 229, 239, .24);
  color: #021012;
  transform: translateY(-2px);
}

.proof-cta:hover b {
  transform: translate(3px, 3px);
}

.experience {
  position: relative;
  min-height: auto;
  overflow: hidden;
  isolation: isolate;
  background: #050505;
}

.experience-image {
  position: absolute;
  z-index: -4;
  top: -9%;
  right: -9%;
  left: -9%;
  height: 118svh;
  background: url('assets/experience-stage-v2.webp') center / cover no-repeat;
  filter: saturate(.96) contrast(1.04) brightness(.88);
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.04);
  will-change: transform;
}

.experience-shade {
  position: absolute;
  z-index: -3;
  top: 0;
  right: 0;
  left: 0;
  height: 118svh;
  background:
    linear-gradient(90deg, rgba(3, 3, 4, .94) 0%, rgba(3, 3, 4, .62) 38%, rgba(3, 3, 4, .08) 72%),
    linear-gradient(180deg, rgba(3, 3, 4, .42), transparent 38%, rgba(3, 3, 4, .94));
}

.experience-content {
  position: relative;
  z-index: 6;
  display: flex;
  min-height: auto;
  flex-direction: column;
  padding: clamp(90px, 10vw, 160px) var(--page-pad) clamp(24px, 3vw, 48px);
}

.experience .section-index {
  width: min(440px, 42vw);
  margin-left: auto;
}

.experience .eyebrow {
  align-self: start;
  margin-top: clamp(70px, 10vh, 130px);
  color: var(--gold-pale);
}

.experience-title {
  align-self: start;
  margin-top: clamp(22px, 3vh, 42px);
  font-size: clamp(70px, 10.2vw, 164px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .78;
}

.experience-title em {
  -webkit-text-stroke-color: var(--white);
}

.experience-footer {
  width: min(620px, 100%);
  margin-top: clamp(28px, 4vh, 46px);
}

.experience-footer > p {
  color: rgba(255, 249, 239, .78);
  font-size: clamp(17px, 1.55vw, 24px);
  line-height: 1.45;
}

.setlist {
  position: relative;
  z-index: 6;
  scroll-margin-top: 72px;
  padding: clamp(12px, 1.8vw, 28px) var(--page-pad) clamp(120px, 13vw, 210px);
}

.setlist-head {
  max-width: 1500px;
  margin: 0 auto clamp(54px, 6vw, 92px);
}

.setlist .eyebrow {
  margin: 0 0 24px;
  color: var(--gold-pale);
}

.setlist h3 {
  max-width: 1100px;
  font-size: clamp(50px, 6vw, 98px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .88;
  text-wrap: balance;
}

.setlist h3 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px var(--white);
}

.setlist-intro {
  max-width: 720px;
  margin-top: clamp(22px, 2.4vw, 36px);
  color: rgba(255, 249, 239, .65);
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.55;
}

.setlist-groups {
  max-width: 1500px;
  margin: 0 auto;
}

.setlist-group {
  position: relative;
  display: grid;
  min-height: clamp(245px, 21vw, 340px);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(34px, 4vw, 62px) clamp(24px, 3.5vw, 56px);
  border: 1px solid rgba(255, 249, 239, .14);
  grid-template-columns: minmax(250px, .48fr) minmax(0, 1.52fr);
  gap: clamp(35px, 7vw, 115px);
}

.setlist-group + .setlist-group {
  margin-top: 14px;
}

.setlist-group::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 4, 5, .94) 0%, rgba(3, 4, 5, .82) 38%, rgba(3, 4, 5, .5) 72%, rgba(3, 4, 5, .42) 100%),
    linear-gradient(180deg, rgba(3, 4, 5, .12), rgba(3, 4, 5, .52)),
    var(--setlist-image) center / cover no-repeat;
  content: '';
  filter: saturate(.9) contrast(1.05);
  transform: scale(1.015);
  transition: filter .7s ease, transform 1.2s cubic-bezier(.16, 1, .3, 1);
}

.setlist-group::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, var(--setlist-accent) 0 2px, transparent 2px);
  content: '';
  opacity: .78;
}

.setlist-group:hover::before {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.035);
}

.setlist-group--disco {
  --setlist-image: url('assets/setlist-disco.webp');
  --setlist-accent: var(--gold-pale);
}

.setlist-group--funk {
  --setlist-image: url('assets/setlist-funk-soul.webp');
  --setlist-accent: #ff673e;
}

.setlist-group--anthems {
  --setlist-image: url('assets/setlist-anthems.webp');
  --setlist-accent: var(--cyan);
}

.setlist-group--royalty {
  --setlist-image: url('assets/setlist-royalty.webp');
  --setlist-accent: #d88bff;
}

.setlist-group--modern {
  --setlist-image: url('assets/setlist-modern.webp');
  --setlist-accent: var(--pink);
}

.setlist-group header {
  display: grid;
  align-items: start;
  grid-template-columns: 34px 1fr;
  gap: 13px;
}

.setlist-group header b {
  padding-top: .7em;
  color: var(--gold-pale);
  font-family: Arial, sans-serif;
  font-size: 8px;
  letter-spacing: .16em;
}

.setlist-group h4 {
  max-width: 360px;
  font-family: 'Recoleta', Georgia, serif;
  font-size: clamp(28px, 2.8vw, 46px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.08;
  text-wrap: balance;
}

.setlist-songs {
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 7px 0;
  padding: 4px 0 0;
  color: rgba(255, 249, 239, .88);
  font-size: clamp(14px, 1.12vw, 18px);
  line-height: 1.45;
  list-style: none;
}

.setlist-songs li:not(:last-child)::after {
  margin: 0 .62em;
  color: var(--cyan);
  content: '•';
  font-family: Arial, sans-serif;
  font-size: .58em;
  vertical-align: .2em;
}

.signal {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(100px, 12vw, 190px) var(--page-pad);
  background: var(--black);
}

.signal::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 249, 239, .08);
  content: '';
}

.signal-number {
  position: absolute;
  top: 50%;
  right: -4vw;
  color: transparent;
  font-family: 'Summer of 76', Arial, sans-serif;
  font-size: min(49vw, 780px);
  letter-spacing: -.07em;
  line-height: .7;
  opacity: .13;
  transform: translateY(-48%);
  -webkit-text-stroke: 1px var(--gold-pale);
}

.signal-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100svh - clamp(200px, 24vw, 380px));
  align-items: end;
  grid-template-columns: minmax(260px, .9fr) minmax(340px, 1.3fr);
  grid-template-rows: auto 1fr auto;
  column-gap: clamp(50px, 9vw, 150px);
}

.signal .section-index {
  width: min(420px, 100%);
  align-self: start;
  color: rgba(255, 249, 239, .5);
  grid-column: 2;
}

.signal-heading {
  align-self: center;
  grid-row: 2 / 4;
}

.signal .eyebrow {
  margin-bottom: 26px;
  color: var(--gold-pale);
}

.signal h2 {
  font-size: clamp(62px, 8vw, 132px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .82;
}

.signal h2 em {
  -webkit-text-stroke-color: var(--white);
}

.signal-copy {
  width: 100%;
  max-width: 650px;
  align-self: end;
  grid-column: 2;
  grid-row: 2;
}

.signal-intro {
  font-size: clamp(18px, 1.65vw, 25px);
  line-height: 1.45;
}

.show-list {
  margin: clamp(28px, 3vw, 46px) 0 0;
  padding: 0;
  border-bottom: 1px solid rgba(255, 249, 239, .18);
  list-style: none;
}

.show-row {
  position: relative;
  display: grid;
  min-height: 78px;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 249, 239, .18);
  grid-template-columns: minmax(100px, .34fr) 1fr auto;
  gap: 18px;
  isolation: isolate;
}

.show-row::before {
  position: absolute;
  z-index: -1;
  inset: 0 -15px;
  background: linear-gradient(90deg, rgba(68, 229, 239, .12), rgba(232, 175, 28, .07), transparent);
  content: '';
  opacity: 0;
  transform: scaleX(.96);
  transform-origin: left;
  transition: opacity .35s ease, transform .35s ease;
}

.show-row:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.show-date {
  display: flex;
  align-items: baseline;
  gap: 9px;
  color: var(--gold-pale);
  font-family: 'Summer of 76', Arial, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.show-date span {
  font-size: 9px;
  letter-spacing: .2em;
}

.show-date b {
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 400;
  white-space: nowrap;
}

.show-details h3 {
  font-size: clamp(16px, 1.35vw, 21px);
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.12;
}

.show-details p,
.show-time,
.signal-invite {
  font-family: Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.show-details p {
  margin-top: 5px;
  color: rgba(255, 249, 239, .48);
  font-size: 7px;
}

.show-time {
  color: var(--cyan);
  font-size: 9px;
  white-space: nowrap;
}

.signal-invite {
  margin-top: 23px;
  color: rgba(255, 249, 239, .62);
  font-size: 8px;
  line-height: 1.7;
}

.signal-socials {
  margin-top: 17px;
}

.disc-button {
  position: relative;
  display: grid;
  width: clamp(178px, 17vw, 250px);
  aspect-ratio: 1;
  margin-top: 56px;
  place-items: center;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(240, 223, 189, .46);
  border-radius: 50%;
  background: radial-gradient(circle, #181716 0 7%, #080808 8% 25%, #171514 26% 27%, #080808 28% 37%, #171514 38% 39%, #080808 40%);
  font-family: 'Summer of 76', Arial, sans-serif;
  text-align: center;
  grid-column: 2;
  grid-row: 3;
  transition: border-color .3s ease, transform .4s cubic-bezier(.16, 1, .3, 1);
}

.disc-button::before {
  position: absolute;
  width: 40%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  content: '';
  transition: transform .55s cubic-bezier(.16, 1, .3, 1);
}

.disc-button span {
  position: relative;
  z-index: 2;
  color: var(--brown);
  font-size: clamp(8px, .8vw, 11px);
  letter-spacing: .16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.disc-button .social-icon {
  position: absolute;
  z-index: 2;
  top: 18%;
  right: 19%;
  color: var(--gold-pale);
  width: 20px;
  height: 20px;
}

.disc-button:hover {
  border-color: var(--gold-pale);
  transform: rotate(4deg) scale(1.025);
}

.disc-button:hover::before {
  transform: scale(1.15);
}

.archive {
  overflow: hidden;
  padding: clamp(100px, 11vw, 175px) 0 clamp(86px, 10vw, 150px);
  background: var(--cream);
  color: #100b06;
}

.archive-head {
  display: grid;
  padding: 0 var(--page-pad);
  align-items: end;
  grid-template-columns: minmax(180px, .7fr) minmax(380px, 1.2fr) minmax(250px, .7fr);
  gap: clamp(30px, 6vw, 100px);
}

.archive-head .section-index {
  align-self: start;
}

.archive .eyebrow {
  margin-bottom: 20px;
  color: #8a5d05;
}

.archive h2 {
  font-size: clamp(72px, 9vw, 145px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .78;
}

.archive h2 em {
  -webkit-text-stroke-color: #100b06;
}

.archive-intro {
  max-width: 430px;
  padding-bottom: 8px;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.55;
}

.poster-rail {
  display: flex;
  margin-top: clamp(70px, 8vw, 130px);
  gap: clamp(20px, 3vw, 46px);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 24px var(--page-pad) 42px;
  cursor: grab;
  scrollbar-width: none;
  user-select: none;
}

.poster-rail::-webkit-scrollbar {
  display: none;
}

.poster-rail.is-dragging {
  cursor: grabbing;
}

.poster-card {
  flex: 0 0 clamp(270px, 27vw, 420px);
}

.poster-b { margin-top: 7vw; }
.poster-c { margin-top: 2vw; }
.poster-d { margin-top: 9vw; }
.poster-e { margin-top: 1vw; }
.poster-f { margin-top: 11vw; }
.poster-g { margin-top: 5vw; }

.poster-image {
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 65px rgba(30, 15, 3, .24);
  transform: perspective(1100px) rotateY(var(--tilt-x, 0deg)) rotateX(var(--tilt-y, 0deg));
  transition: box-shadow .4s ease, transform .18s ease;
}

.poster-image img {
  width: 100%;
  aspect-ratio: 900 / 1243;
  object-fit: cover;
  pointer-events: none;
  transition: transform .65s cubic-bezier(.16, 1, .3, 1), filter .5s ease;
}

.poster-card:hover .poster-image {
  box-shadow: 0 42px 85px rgba(30, 15, 3, .34);
}

.poster-card:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.018);
}

.poster-glare {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--glare-x, 50%) var(--glare-y, 50%), rgba(255, 255, 255, .25), transparent 38%);
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity .25s ease;
}

.poster-card:hover .poster-glare {
  opacity: 1;
}

.poster-card figcaption {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line-dark);
  margin-top: 14px;
  padding-top: 12px;
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.poster-card figcaption span {
  color: rgba(16, 11, 6, .58);
}

.drag-note {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 5px var(--page-pad) 0;
  font-family: 'Summer of 76', Arial, sans-serif;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.drag-note i {
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-style: normal;
}

.contact {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #07151a;
}

.contact-art {
  position: absolute;
  z-index: -4;
  inset: -7%;
  background: url('assets/ink.webp') center / cover no-repeat;
  filter: saturate(1.14) contrast(1.08) brightness(.72);
  transform: scale(1.04);
}

.contact-shade {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    radial-gradient(circle at 50% 43%, rgba(1, 4, 7, .08), rgba(1, 4, 7, .78) 74%),
    linear-gradient(180deg, rgba(3, 5, 7, .55), rgba(3, 5, 7, .84));
}

.contact-content {
  position: relative;
  z-index: 5;
  display: flex;
  min-height: 100svh;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 100px var(--page-pad) 80px;
  text-align: center;
}

.contact .eyebrow {
  margin-bottom: 28px;
  color: var(--gold-pale);
}

.contact h2 {
  font-size: clamp(80px, 12.4vw, 200px);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: .74;
}

.contact h2 em {
  -webkit-text-stroke-color: var(--white);
}

.contact-copy {
  max-width: 610px;
  margin-top: 42px;
  color: rgba(255, 249, 239, .77);
  font-size: clamp(16px, 1.4vw, 22px);
  line-height: 1.55;
}

.booking-button {
  display: grid;
  width: min(560px, 90vw);
  margin-top: 42px;
  align-items: center;
  grid-template-columns: 1fr auto;
  border: 1px solid rgba(255, 249, 239, .47);
  padding: 20px 24px 17px;
  background: rgba(5, 5, 5, .15);
  backdrop-filter: blur(12px);
  font-family: 'Summer of 76', Arial, sans-serif;
  font-size: 10px;
  letter-spacing: .2em;
  text-align: left;
  text-transform: uppercase;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}

.booking-button .social-icon {
  color: var(--gold-pale);
  width: 21px;
  height: 21px;
  transition: transform .3s ease;
}

.booking-button:hover {
  border-color: var(--gold-pale);
  background: var(--gold-pale);
  color: var(--black);
}

.booking-button:hover .social-icon {
  color: var(--black);
  transform: translate(4px, -4px);
}

.contact-handle {
  display: inline-flex;
  margin-top: 25px;
  align-items: center;
  gap: 9px;
  color: rgba(255, 249, 239, .65);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.contact-handle .social-icon {
  width: 16px;
  height: 16px;
}

footer {
  display: grid;
  align-items: start;
  padding: 60px var(--page-pad) 34px;
  background: var(--black);
  grid-template-columns: 1.3fr .7fr .6fr;
  gap: 40px;
}

.footer-logo {
  display: block;
  width: clamp(185px, 18vw, 285px);
}

.footer-logo img {
  width: 100%;
  height: auto;
}

footer p,
.footer-links {
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1.8;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 15px;
  justify-items: end;
}

.footer-links > a:hover {
  color: var(--gold-pale);
}

.footer-socials {
  justify-content: flex-end;
}

footer > span {
  margin-top: 60px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 249, 239, .12);
  color: rgba(255, 249, 239, .42);
  font-family: Arial, sans-serif;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  grid-column: 1 / -1;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .85s ease, transform 1s cubic-bezier(.16, 1, .3, 1);
}

.js .hero .reveal {
  transition-delay: 1.1s;
}

.js .reveal.is-visible,
.is-ready .hero .reveal {
  opacity: 1;
  transform: none;
}

@keyframes load-line {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

@keyframes marquee {
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes beam-a {
  to { transform: rotate(-17deg) skewX(-5deg) translateX(4vw); opacity: .3; }
}

@keyframes beam-b {
  to { transform: rotate(14deg) skewX(5deg) translateX(-4vw); opacity: .26; }
}

@keyframes hero-cinema {
  0% { transform: translate3d(-.8%, .35%, 0) scale(1.08); }
  48% { transform: translate3d(.25%, -.6%, 0) scale(1.125); }
  100% { transform: translate3d(.9%, .25%, 0) scale(1.1); }
}

@keyframes hero-reflections-a {
  0% { transform: translate3d(-3%, 1%, 0) rotate(-7deg) scale(1.04); opacity: .48; }
  45% { opacity: .9; }
  100% { transform: translate3d(7%, -3%, 0) rotate(5deg) scale(1.12); opacity: .55; }
}

@keyframes hero-reflections-b {
  0% { transform: translate3d(5%, -2%, 0) rotate(5deg) scale(1.08); opacity: .42; }
  52% { opacity: .82; }
  100% { transform: translate3d(-6%, 3%, 0) rotate(-5deg) scale(1.14); opacity: .5; }
}

@keyframes disco-reflections-a {
  0% { transform: translate3d(-2%, 2%, 0) rotate(-7deg) scale(1.08); }
  50% { transform: translate3d(3%, -2%, 0) rotate(-2deg) scale(1.12); }
  100% { transform: translate3d(8%, 1%, 0) rotate(4deg) scale(1.08); }
}

@keyframes disco-reflections-b {
  0% { transform: translate3d(4%, -1%, 0) rotate(5deg) scale(1.06); }
  50% { transform: translate3d(-2%, 3%, 0) rotate(0deg) scale(1.1); }
  100% { transform: translate3d(-7%, -2%, 0) rotate(-5deg) scale(1.06); }
}

@media (max-width: 980px) {
  .hero-wordmark {
    height: min(58vh, 560px);
    max-width: 72vw;
  }

  .hero-topline p:nth-child(2) {
    display: none;
  }

  .hero-topline {
    grid-template-columns: 1fr 1fr;
  }

  .hero-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .hero-rally {
    position: absolute;
    bottom: calc(100% + 30px);
    left: 50%;
    width: max-content;
    transform: translateX(-50%);
  }

  .manifesto-grid {
    grid-template-columns: .8fr 1.2fr;
  }

  .manifesto-van {
    top: 175px;
    right: auto;
    left: 50%;
    width: 94vw;
    opacity: .09;
  }

  .manifesto-script {
    position: absolute;
    top: auto;
    right: -2vw;
    bottom: 6vh;
    rotate: -7deg;
  }

  .proof-layout {
    column-gap: 6vw;
    grid-template-columns: .92fr 1.08fr;
  }

  .proof-turn {
    grid-template-columns: .34fr 1.66fr;
  }

  .signal-grid {
    column-gap: 6vw;
  }

  .archive-head {
    grid-template-columns: .7fr 1.3fr;
  }

  .archive-intro {
    margin-top: 30px;
    grid-column: 2;
  }

}

@media (max-width: 720px) {
  :root {
    --page-pad: 22px;
  }

  .site-header {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-header nav {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    width: min(86vw, 370px);
    min-height: 100svh;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 82px 34px 45px;
    background: rgba(5, 5, 5, .97);
    transform: translateX(102%);
    transition: transform .5s cubic-bezier(.16, 1, .3, 1);
  }

  .site-header nav a {
    width: 100%;
    border-top: 1px solid rgba(255, 249, 239, .16);
    padding: 15px 0 6px;
    font-family: 'Recoleta', Georgia, serif;
    font-size: 28px;
    letter-spacing: -.02em;
    text-transform: none;
  }

  .site-header.menu-open nav {
    transform: none;
  }

  .site-header.menu-open .menu-toggle {
    position: relative;
    z-index: 2;
  }

  .site-header.menu-open .menu-toggle i {
    transform: rotate(45deg);
  }

  .hero-media {
    inset: -4%;
  }

  .hero-media img {
    object-position: 50% 45%;
  }

  .hero-topline {
    top: 112px;
    right: calc(var(--page-pad) + 30px);
    left: calc(var(--page-pad) + 30px);
  }

  .hero-topline p:first-child {
    display: none;
  }

  .hero-topline {
    display: block;
    text-align: center;
  }

  .hero-topline p:last-child {
    text-align: center;
  }

  .hero-frame {
    top: 75px;
    bottom: 24px;
  }

  .hero-media img {
    object-position: 44% 50%;
  }

  .hero-reflections {
    inset: -28%;
    opacity: .34;
  }

  .hero-wordmark {
    width: min(82vw, 510px);
    height: auto;
    max-width: none;
    transform: translateY(2vh) scale(.82);
  }

  .is-ready .hero-wordmark {
    transform: translateY(2vh) scale(1);
  }

  .hero-bottom {
    right: calc(var(--page-pad) + 30px);
    bottom: 76px;
    left: calc(var(--page-pad) + 30px);
    align-items: end;
  }

  .hero-mantra {
    font-size: 19px;
  }

  .hero-rally {
    bottom: calc(100% + 24px);
  }

  .hero-rally span {
    font-size: 12px;
  }

  .hero-rally strong {
    font-size: 42px;
  }

  .hero-cta span {
    display: none;
  }

  .hero-cta i {
    width: 44px;
    height: 44px;
  }

  .marquee-group {
    gap: 8px;
    padding-top: 11px;
    padding-right: 8px;
    padding-bottom: 9px;
  }

  .marquee span {
    font-size: 9px;
  }

  .manifesto {
    padding-top: 85px;
    padding-bottom: 110px;
  }

  .manifesto-van {
    top: 158px;
    right: auto;
    left: 50%;
    width: 152vw;
    opacity: .08;
  }

  .manifesto > .section-index {
    width: 100%;
    margin-bottom: 76px;
  }

  .statement {
    font-size: clamp(43px, 12.5vw, 78px);
    line-height: .92;
  }

  .statement span {
    white-space: nowrap;
  }

  .statement span:nth-child(2),
  .statement span:nth-child(3) {
    margin-left: 0;
  }

  .manifesto-grid {
    margin-top: 78px;
    grid-template-columns: 1fr;
  }

  .manifesto-copy {
    padding: 0;
  }

  .manifesto-copy .lede {
    font-size: 23px;
  }

  .portrait {
    margin-top: 25px;
  }

  .manifesto-script {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    margin: -6px 0 0 auto;
    text-align: right;
    rotate: -5deg;
  }

  .manifesto-script::before {
    right: 4px;
    left: auto;
  }

  .chapter-current::before {
    top: -6px;
    left: -20vw;
    width: 140vw;
    transform: rotate(-5deg);
  }

  .chapter-current::after {
    top: -8px;
    left: 30%;
    width: 62vw;
    transform: rotate(-5deg);
  }

  .chapter-current span {
    top: -14px;
    left: 47%;
  }

  .chapter-current i {
    top: -8px;
    left: 78%;
  }

  .proof {
    padding-top: 85px;
    padding-bottom: 110px;
  }

  .proof .section-index {
    width: 100%;
    margin-bottom: 76px;
  }

  .proof-layout {
    grid-template-columns: 1fr;
  }

  .proof-story {
    margin-top: 58px;
    padding-left: 24px;
  }

  .proof-turn {
    margin-top: 75px;
    padding: 34px 24px 30px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .proof-question {
    padding-top: 0;
  }

  .proof-punch {
    font-size: clamp(34px, 10.5vw, 58px);
  }

  .proof-punch::before {
    top: -.42em;
    right: -.08em;
  }

  .proof-disco {
    right: -40%;
    bottom: 55px;
    width: 170%;
    height: 590px;
    opacity: .78;
  }

  .proof-cta {
    width: 100%;
  }

  .experience,
  .experience-content {
    min-height: auto;
  }

  .experience-image {
    height: 118svh;
    background-position: 57% center;
  }

  .experience-shade {
    height: 118svh;
  }

  .experience-content {
    padding-top: 82px;
    padding-bottom: 24px;
  }

  .experience .section-index {
    width: 100%;
  }

  .experience .eyebrow {
    margin-top: 82px;
  }

  .experience-title {
    font-size: clamp(58px, 18vw, 96px);
    line-height: .82;
  }

  .experience-footer > p {
    font-size: 18px;
  }

  .setlist {
    padding-top: 12px;
    padding-bottom: 115px;
  }

  .setlist-head {
    margin-bottom: 54px;
  }

  .setlist h3 {
    font-size: clamp(46px, 13vw, 72px);
  }

  .setlist-group {
    min-height: 330px;
    padding: 32px 25px 35px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .setlist-group h4 {
    max-width: 280px;
    font-size: 30px;
  }

  .setlist-group::before {
    background:
      linear-gradient(90deg, rgba(3, 4, 5, .93), rgba(3, 4, 5, .67)),
      linear-gradient(180deg, rgba(3, 4, 5, .18), rgba(3, 4, 5, .72)),
      var(--setlist-image) 62% center / cover no-repeat;
  }

  .setlist-songs {
    padding-top: 0;
    font-size: 15px;
  }

  .signal {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 110px;
  }

  .signal::before {
    left: 38%;
  }

  .signal-number {
    top: 39%;
    right: -18vw;
    font-size: 86vw;
  }

  .signal-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .signal .section-index,
  .signal-heading,
  .signal-copy,
  .disc-button {
    grid-column: 1;
    grid-row: auto;
  }

  .signal .section-index {
    width: 100%;
    margin-bottom: 94px;
  }

  .signal-heading {
    margin-bottom: 70px;
  }

  .signal h2 {
    font-size: clamp(55px, 16vw, 86px);
  }

  .signal-copy {
    padding-left: 0;
  }

  .show-row {
    min-height: 88px;
    grid-template-columns: 76px minmax(0, 1fr) auto;
    gap: 12px;
  }

  .show-date {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .show-date b {
    font-size: 21px;
  }

  .show-details h3 {
    font-size: 17px;
  }

  .show-time {
    font-size: 8px;
  }

  .disc-button {
    width: 185px;
    margin-top: 56px;
    justify-self: end;
  }

  .archive-head {
    grid-template-columns: 1fr;
  }

  .archive-head .section-index,
  .archive-intro {
    grid-column: 1;
  }

  .archive-head .section-index {
    margin-bottom: 50px;
  }

  .archive h2 {
    font-size: clamp(66px, 19vw, 100px);
  }

  .poster-rail {
    margin-top: 58px;
    gap: 20px;
    padding-right: 55px;
  }

  .poster-card {
    flex-basis: min(78vw, 330px);
  }

  .poster-b,
  .poster-c,
  .poster-d,
  .poster-e,
  .poster-f,
  .poster-g {
    margin-top: 0;
  }

  .drag-note {
    justify-content: flex-start;
  }

  .contact-content {
    padding-top: 100px;
    padding-bottom: 74px;
  }

  .contact h2 {
    font-size: clamp(71px, 20vw, 112px);
  }

  .contact .eyebrow {
    max-width: 280px;
    line-height: 1.6;
  }

  .booking-button {
    padding: 18px 18px 15px;
    font-size: 8px;
  }

  footer {
    grid-template-columns: 1fr 1fr;
    gap: 42px 24px;
  }

  .footer-logo {
    grid-column: 1 / -1;
  }

  .footer-links {
    justify-items: start;
  }

  .footer-socials {
    justify-content: flex-start;
  }
}

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

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

  .hero-wordmark,
  .js .reveal,
  .statement span {
    opacity: 1;
    transform: none;
  }
}
