h1,
.h1 {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 11.25px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h2,
.h2 {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

h3,
.h3 {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 11.25px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h4,
.h4 {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 7.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h5,
.h5 {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 7.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h6,
.h6 {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 7.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

p,
.p {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 15px;
  text-transform: none;
  letter-spacing: 0.04em;
}

.p-sm {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.p-lg {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.text-xs {
  font-size: 12px;
  font-weight: 400;
}

.text-sm {
  font-size: 14px;
  font-weight: 400;
}

.text-base {
  font-size: 20px;
  font-weight: 400;
}

.text-lg {
  font-size: 20px;
  font-weight: 400;
}

::-webkit-scrollbar {
  display: none;
}

* {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

:root {
  --navbar-height: 60px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
}

html,
body {
  height: 100%;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-weight: 400;
  font-style: normal;
  background-color: #ece8de;
  color: #1a1916;
  text-transform: none;
  font-size: 14px;
  overflow-y: auto;
  overflow-x: hidden;
  letter-spacing: 0.06em;
  -webkit-font-smoothing: antialiased;
}

body.page-home {
  background-color: black;
  color: white;
}

body.page-side {
  background-color: #ece8de;
  color: #1a1916;
}

body.page-side .background {
  display: none;
}

body > *:not(.background):not(.cc-window):not(.cc-revoke) {
  position: relative;
  z-index: 1;
}

.background {
  position: fixed;
  inset: 0;
  height: 100dvh;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), var(--hero-bg, url("../media/bg.jpg"));
  background-size: cover;
  background-position: center calc(50% + var(--parallax-offset, 0px));
}
.background--video {
  background-image: none;
}
.background--video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35));
  pointer-events: none;
  z-index: 1;
}
.background__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center calc(50% + var(--parallax-offset, 0px));
  object-position: center calc(50% + var(--parallax-offset, 0px));
}

nav {
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px;
  background: transparent;
  transition: background-color 0.2s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: 30px;
}
nav #logo {
  max-width: 420px;
  width: 100%;
}
nav ul {
  display: flex;
  -moz-column-gap: 15px;
  column-gap: 15px;
  align-items: center;
}
nav ul li {
  margin: 15px 0;
}
nav .hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 1001;
}
nav .hamburger span {
  background: currentColor;
  border-radius: 2px;
  height: 2px;
  margin: 3px;
  width: 22px;
  transition: all 0.3s ease;
}
nav .hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
nav .hamburger.open span:nth-child(2) {
  opacity: 0;
}
nav .hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
nav .logo {
  max-width: min(180px, 42vw);
  width: 100%;
  height: auto;
  display: block;
}
nav ul#nav-links li a {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  text-underline-offset: 0.35em;
  text-decoration-thickness: 1px;
}
nav ul#nav-links li a:hover, nav ul#nav-links li a:focus-visible {
  text-decoration: underline;
}

nav.is-scrolled {
  background: rgba(236, 232, 222, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

body.page-home nav.is-scrolled {
  background: rgba(0, 0, 0, 0.45);
}

section {
  scroll-margin-top: var(--navbar-height);
}

section:not(#hero) {
  background: transparent;
}

section:not(:first-of-type) {
  margin-bottom: 60px;
}

section.default {
  padding-top: 30px;
  margin-bottom: 0px;
  min-height: 100%;
}
section.default .container {
  max-width: 42rem;
  width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  padding: 90px 15px;
  justify-content: center;
  flex-direction: column;
}

#hero {
  height: 100dvh;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
#hero .container {
  padding-top: 0px;
  padding-bottom: 0px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
}
#hero .hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.75rem, 3vh, 2.5rem);
  max-width: min(52rem, 100%);
  width: 100%;
}
#hero .hero-block {
  opacity: 0;
  transform: translateY(20px);
  -webkit-animation: fadeInUp 0.8s ease-out forwards;
  animation: fadeInUp 0.8s ease-out forwards;
  margin: 0;
  width: 100%;
}
#hero .hero-block:nth-child(2) {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}
#hero .hero-title {
  margin: 0 0 0.65rem;
  line-height: 0;
  width: 100%;
}
#hero .hero-title img {
  display: block;
  width: min(92vw, 34rem);
  max-width: 100%;
  height: auto;
  margin-inline: auto;
}
#hero .hero-label {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 0.65rem;
  opacity: 0.9;
}
#hero .hero-single-title {
  display: inline-block;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
  text-transform: none;
  line-height: 1.15;
  margin: 0 0 0.65rem;
  color: inherit;
  text-decoration: none;
  text-underline-offset: 0.35em;
  text-decoration-thickness: 1px;
}
#hero .hero-single-title:hover, #hero .hero-single-title:focus-visible {
  text-decoration: underline;
}
#hero .hero-meta {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
  opacity: 0.9;
}

#merch .container,
#music .container,
#watch .container {
  display: grid;
  -moz-column-gap: 15px;
  column-gap: 15px;
  row-gap: 30px;
  width: 100%;
}
#merch .btn,
#music .btn,
#watch .btn {
  width: 100%;
}

#merch .container {
  grid-template-columns: repeat(4, 1fr);
}

#music .container {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

#watch .container {
  grid-template-columns: repeat(2, 1fr);
}

#watch-home .container {
  grid-template-columns: repeat(1, 1fr);
}

.seo-intro {
  grid-column: 1/-1;
  max-width: 880px;
  margin: 5.25px 0 25.5px;
  padding: 0;
  background: transparent;
  border: 0;
  text-transform: none;
  letter-spacing: 0.35px;
  line-height: 1.7;
  opacity: 0.94;
}
.seo-intro p {
  font-size: 18px;
  line-height: 1.6;
}
.seo-intro p:last-child {
  margin-bottom: 0;
}

#watch .musicItem {
  width: 100%;
  min-width: 0;
}
#watch .musicItem .video-container {
  width: 100%;
  aspect-ratio: 16/9;
}

.merchItem > a:not(.btn) {
  overflow: hidden;
  display: block;
}
.merchItem > a:not(.btn) img {
  display: block;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}
@media (hover: hover) {
  .merchItem > a:not(.btn):hover img, .merchItem > a:not(.btn):focus-within img {
    transform: scale(1.025);
    filter: brightness(1.04);
  }
}
.merchItem > a:not(.btn) {
  margin-bottom: 15px;
}
.merchItem img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  margin-bottom: 15px;
  -o-object-fit: contain;
  object-fit: contain;
}
.merchItem > a:not(.btn) img {
  margin-bottom: 0;
}

.musicItem > a:not(.btn) {
  overflow: hidden;
  display: block;
}
.musicItem > a:not(.btn) img {
  display: block;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}
@media (hover: hover) {
  .musicItem > a:not(.btn):hover img, .musicItem > a:not(.btn):focus-within img {
    transform: scale(1.025);
    filter: brightness(1.04);
  }
}
.musicItem > a:not(.btn) {
  margin-bottom: 15px;
}
.musicItem img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  margin-bottom: 15px;
  -o-object-fit: contain;
  object-fit: contain;
}
.musicItem > a:not(.btn) img {
  margin-bottom: 0;
}
.musicItem .packshot {
  overflow: hidden;
  display: block;
}
.musicItem .packshot img {
  display: block;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}
@media (hover: hover) {
  .musicItem .packshot:hover img, .musicItem .packshot:focus-within img {
    transform: scale(1.025);
    filter: brightness(1.04);
  }
}
.musicItem .packshot {
  position: relative;
  margin-bottom: 15px;
}
.musicItem .packshot img {
  margin-bottom: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease, opacity 0.25s ease;
}
.musicItem .packshot .listen-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 15px;
  background-color: rgba(26, 25, 22, 0.82);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.musicItem .packshot .listen-overlay .listen-link {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white !important;
  text-decoration: none;
  text-underline-offset: 0.35em;
  text-decoration-thickness: 1px;
  line-height: 1.35;
}
.musicItem .packshot .listen-overlay .listen-link:hover, .musicItem .packshot .listen-overlay .listen-link:focus-visible {
  text-decoration: underline;
}
@media (hover: hover) {
  .musicItem .packshot:hover img, .musicItem .packshot:focus-within img {
    opacity: 0.92;
  }
  .musicItem .packshot:hover .listen-overlay, .musicItem .packshot:focus-within .listen-overlay {
    opacity: 1;
    pointer-events: auto;
  }
}
@media (hover: none) {
  .musicItem .packshot {
    cursor: pointer;
  }
  .musicItem .packshot.is-open img {
    opacity: 0.92;
  }
  .musicItem .packshot.is-open .listen-overlay {
    opacity: 1;
    pointer-events: auto;
  }
}
.musicItem h6 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0;
}
.musicItem .video-container {
  overflow: hidden;
  display: block;
}
.musicItem .video-container img {
  display: block;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}
@media (hover: hover) {
  .musicItem .video-container:hover img, .musicItem .video-container:focus-within img {
    transform: scale(1.025);
    filter: brightness(1.04);
  }
}
.musicItem .video-container {
  position: relative;
  width: 100%;
  cursor: pointer;
  margin-bottom: 15px;
  aspect-ratio: 16/9;
}
.musicItem .video-container .video-thumbnail {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease, opacity 0.25s ease;
}
.musicItem .video-container .play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.85;
  transition: opacity 0.25s ease, transform 0.35s ease;
  pointer-events: none;
}
.musicItem .video-container .play-overlay svg {
  -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
@media (hover: hover) {
  .musicItem .video-container:hover .video-thumbnail, .musicItem .video-container:focus-within .video-thumbnail {
    opacity: 0.95;
  }
  .musicItem .video-container:hover .play-overlay, .musicItem .video-container:focus-within .play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.06);
  }
}
.musicItem .video-container .video-embed {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
}

html.scroll-reveal-enabled .merchItem,
html.scroll-reveal-enabled .musicItem,
html.scroll-reveal-enabled #watch-home .video-container,
html.scroll-reveal-enabled #collaborations .collab-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
  transition-delay: var(--reveal-delay, 0s);
}
html.scroll-reveal-enabled .merchItem.is-visible,
html.scroll-reveal-enabled .musicItem.is-visible,
html.scroll-reveal-enabled #watch-home .video-container.is-visible,
html.scroll-reveal-enabled #collaborations .collab-item.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .merchItem,
  .musicItem,
  #watch-home .video-container {
    opacity: 1;
    transform: none;
    -webkit-animation: none;
    animation: none;
  }
  .merchItem > a:not(.btn) img,
  .musicItem > a:not(.btn) img,
  .musicItem .packshot img,
  .musicItem .packshot .listen-overlay,
  .musicItem .video-container .video-thumbnail,
  .musicItem .video-container .play-overlay,
  #watch-home .video-container .video-thumbnail,
  #watch-home .video-container .play-overlay {
    transition: none;
    transform: none;
    filter: none;
  }
}
#tour .container {
  flex-direction: column;
  row-gap: 15px;
}
#tour .event {
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}
#tour .event .a {
  margin-bottom: 5px;
}
#tour .event .date,
#tour .event .venue,
#tour .event .ticket {
  display: inline-block;
}
#tour .event .date {
  width: 20%;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
}
#tour .event .venue {
  width: 60%;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
}
#tour .event .ticket {
  width: 20%;
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
#tour .seated-event-details-cell {
  width: 100%;
  font-size: 14px;
  line-height: 1.2em;
  opacity: 0.85;
  padding: 10px 0;
}
#tour #seated-55fdf2c0 .seated-event-link,
#tour #seated-55fdf2c0 .seated-event-link:visited,
#tour #seated-55fdf2c0 .seated-event-link:active,
#tour #seated-55fdf2c0 .seated-event-link:focus,
#tour #seated-55fdf2c0 .seated-event-link1,
#tour #seated-55fdf2c0 .seated-event-link1:visited,
#tour #seated-55fdf2c0 .seated-event-link2,
#tour #seated-55fdf2c0 .seated-event-link2:visited,
#tour #seated-55fdf2c0 .seated-follow-link,
#tour #seated-55fdf2c0 .seated-follow-link:visited,
#tour #seated-55fdf2c0 .seated-follow-link:active,
#tour #seated-55fdf2c0 .seated-follow-link:focus {
  background-color: rgba(0, 0, 0, 0.5) !important;
  color: white !important;
  border: 2px solid white !important;
  padding: 7.5px !important;
  font-size: 20px !important;
  font-weight: 300 !important;
  font-family: inherit !important;
  text-align: center !important;
  text-decoration: none !important;
  text-shadow: none !important;
  letter-spacing: inherit !important;
  text-transform: uppercase !important;
  display: inline-block !important;
  min-width: 120px;
  box-sizing: border-box;
  transition: all 0.1s ease-in-out;
  cursor: pointer;
}
#tour #seated-55fdf2c0 .seated-event-link:hover,
#tour #seated-55fdf2c0 .seated-event-link1:hover,
#tour #seated-55fdf2c0 .seated-event-link2:hover,
#tour #seated-55fdf2c0 .seated-follow-link:hover {
  background-color: white !important;
  color: black !important;
}
@media (min-width: 1024px) {
  #tour .seated-event-details-cell {
    width: 300px;
  }
  #tour .seated-event-description-cells {
    width: calc(100% - 240px);
  }
}
@media (min-width: 1200px) {
  #tour .seated-event-details-cell {
    width: 400px;
    font-size: 20px;
  }
  #tour .seated-event-description-cells {
    width: calc(100% - 160px);
  }
}

#watch-home .video {
  aspect-ratio: 16/9;
  width: 100%;
}
#watch-home .video-container {
  overflow: hidden;
  display: block;
}
#watch-home .video-container img {
  display: block;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}
@media (hover: hover) {
  #watch-home .video-container:hover img, #watch-home .video-container:focus-within img {
    transform: scale(1.025);
    filter: brightness(1.04);
  }
}
#watch-home .video-container {
  position: relative;
  width: 100%;
  cursor: pointer;
  margin-bottom: 15px;
  aspect-ratio: 16/9;
}
#watch-home .video-container .video-thumbnail {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease, opacity 0.25s ease;
}
#watch-home .video-container .play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.85;
  transition: opacity 0.25s ease, transform 0.35s ease;
  pointer-events: none;
}
#watch-home .video-container .play-overlay svg {
  -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
@media (hover: hover) {
  #watch-home .video-container:hover .video-thumbnail, #watch-home .video-container:focus-within .video-thumbnail {
    opacity: 0.95;
  }
  #watch-home .video-container:hover .play-overlay, #watch-home .video-container:focus-within .play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.06);
  }
}
#watch-home .video-container .video-embed {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
}

footer {
  background: #ece8de;
  flex-shrink: 0;
  color: #1a1916;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 15px;
  padding-bottom: 52.5px;
}
footer .footer-signup {
  width: 100%;
  max-width: 700px;
  display: flex;
  justify-content: center;
}
footer .laylo {
  width: 100%;
  max-width: 480px;
}
footer ul.socials {
  display: flex;
  gap: 18.75px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 52.5px;
}
footer .footer-contact,
footer .footer-privacy {
  margin: 0;
  font-size: 14px;
}
footer .footer-contact a,
footer .footer-privacy a {
  text-decoration: underline;
  text-underline-offset: 0.35em;
}
footer .footer-contact {
  margin-top: 22.5px;
}
footer .footer-privacy {
  margin-top: 15px;
}

a {
  color: inherit !important;
  text-decoration: none;
  text-underline-offset: 0.35em;
  text-decoration-thickness: 1px;
}

a.link-hover:hover,
a.link-hover:focus-visible,
.musicItem h6 a:hover,
.musicItem h6 a:focus-visible,
#collaborations .collab-song a:hover,
#collaborations .collab-song a:focus-visible {
  text-decoration: underline;
}

ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
ul li {
  display: inline-block;
}

.btn,
.btn:visited,
.btn:active,
.btn:focus {
  background-color: transparent;
  color: inherit !important;
  padding: 7.5px 15px;
  display: inline-block;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 400;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  transition: all 0.15s ease-in-out;
  text-decoration: none;
}

.btn:hover {
  text-decoration: underline;
  text-underline-offset: 0.35em;
}

form label {
  font-size: 12px;
}
form .checkbox {
  padding: 0px;
  margin-left: 0px;
}
form a {
  text-decoration: underline;
}

.form-group {
  display: flex;
}
.form-group input {
  display: inline-block;
  border: 1px solid #1a1916;
  background: transparent;
  color: #1a1916;
  margin: 0px;
  height: 32px;
  width: 240px;
  padding: 3.75px 7.5px;
  text-transform: none;
  font-size: 20px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}
.form-group button {
  display: inline-block;
  margin: 0px;
  cursor: pointer;
  margin-left: -2px;
}

#success {
  display: flex;
  align-items: center;
  font-size: 20px;
}

.contact {
  text-align: center;
  font-size: 14px;
}

.mobile-socials {
  display: none;
}

@media screen and (max-width: 768px) {
  nav {
    justify-content: space-between;
    position: relative;
  }
  nav #logo {
    max-width: 300px;
  }
  nav ul#nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    height: 100dvh;
    background: rgba(236, 232, 222, 0.97);
    color: #1a1916;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
  }
  nav ul#nav-links li {
    margin: 22.5px 0;
  }
  body.page-home nav ul#nav-links {
    background: rgba(0, 0, 0, 0.92);
    color: white;
  }
  nav ul#nav-links.show {
    display: flex;
  }
  .hamburger {
    display: flex !important;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
  #merch .container {
    grid-template-columns: repeat(2, 1fr);
  }
  #music .container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  #watch .container {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .seo-intro {
    max-width: 100%;
    margin: 3px 0 20.25px;
    padding: 0;
    font-size: 14px;
    line-height: 1.5;
  }
  .seo-intro p {
    font-size: 14px;
  }
  #tour .event {
    flex-direction: column;
    font-size: 14px;
  }
  #tour .event .date {
    margin-bottom: 7.5px;
    font-size: 14px;
  }
  #tour .event .venue {
    margin-bottom: 15px;
    font-size: 14px;
  }
  #tour .event .ticket {
    font-size: 12px;
  }
  #tour .event .date,
  #tour .event .venue,
  #tour .event .ticket {
    width: 100%;
  }
  footer ul.socials {
    gap: 7.5px;
  }
  .form-group input {
    width: 100%;
  }
  nav ul#nav-links {
    padding-bottom: 80px;
  }
  .mobile-socials {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 1002;
  }
  .mobile-socials ul {
    display: flex;
    gap: 7.5px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .mobile-socials.show {
    display: block;
  }
  h1,
  .h1 {
    font-size: 38px;
  }
  h2,
  .h2 {
    font-size: 24px;
  }
  h3,
  .h3 {
    font-size: 20px;
  }
  h4,
  .h4 {
    font-size: 20px;
  }
  h5,
  .h5 {
    font-size: 14px;
  }
  h6,
  .h6 {
    font-size: 12px;
  }
  p,
  .p {
    font-size: 14px;
  }
  .p-lg {
    font-size: 20px;
  }
  .text-lg {
    font-size: 20px;
  }
}
@media screen and (max-width: 1200px) and (min-width: 769px) {
  .buy {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  nav ul#nav-links.show .buy {
    display: block;
  }
}
.interstitial {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  pointer-events: none;
}
.interstitial[hidden] {
  display: none !important;
}

.interstitial:not([hidden]) {
  pointer-events: auto;
}

.interstitial__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.interstitial__panel {
  position: relative;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: min(1200px, 90vw);
  max-height: calc(100dvh - 30px);
  overflow-y: auto;
  background: black;
  padding: 30px;
  text-align: center;
  color: white;
  font-family: inherit;
  font-size: 20px;
}

.interstitial__close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0;
  border: none;
  background: transparent;
  color: white;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.interstitial__close:hover {
  opacity: 0.8;
}

.interstitial__content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 560px;
  margin: 0 auto;
}

.interstitial__image {
  overflow: hidden;
  display: block;
}
.interstitial__image img {
  display: block;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}
@media (hover: hover) {
  .interstitial__image:hover img, .interstitial__image:focus-within img {
    transform: scale(1.025);
    filter: brightness(1.04);
  }
}
.interstitial__image {
  margin-bottom: 30px;
  max-height: 50vh;
  width: 100%;
}
.interstitial__image img {
  width: 100%;
  height: auto;
  max-height: 50vh;
  -o-object-fit: contain;
  object-fit: contain;
}

.interstitial__text {
  width: 100%;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 30px;
  text-transform: none;
  color: white;
  box-sizing: border-box;
}
.interstitial__text p {
  margin-bottom: 15px;
}
.interstitial__text p:last-child {
  margin-bottom: 0;
}

.interstitial__panel .btn {
  width: 100%;
  margin-top: 15px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .interstitial {
    padding: 15px;
  }
  .interstitial__panel {
    max-height: calc(100dvh - 30px);
    max-width: calc(100vw - 30px);
    padding: 30px 22.5px;
    padding-top: 45px;
  }
  .interstitial__close {
    top: 7.5px;
    right: 7.5px;
  }
  .interstitial__content {
    max-width: 100%;
  }
  .interstitial__image {
    max-height: 40vh;
  }
  .interstitial__image img {
    max-height: 40vh;
  }
  .interstitial__text {
    font-size: 14px;
  }
}
.hide {
  display: none !important;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

.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;
}

nav {
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px;
  background: transparent;
  transition: background-color 0.2s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: 30px;
}

@media screen and (max-width: 768px) {
  nav {
    position: fixed;
    width: 100%;
  }
}
.page-content {
  padding-top: calc(var(--navbar-height) + 15px);
}
.page-content .container {
  flex-direction: column;
  align-items: flex-start;
}
.page-content h1 {
  margin-bottom: 15px;
}
.non-root-page main {
  background-color: transparent;
  padding: 15px;
}

#collaborations .container {
  align-items: stretch;
}
#collaborations .collab-list {
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
#collaborations .collab-list > li {
  display: block;
  width: 100%;
}
#collaborations .collab-toggle {
  display: block;
  width: 100%;
  background: none;
  border: 0;
  padding: 0.35rem 0;
  margin: 0;
  text-align: left;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  text-underline-offset: 0.35em;
}
#collaborations .collab-toggle:hover, #collaborations .collab-toggle:focus-visible {
  text-decoration: underline;
}
#collaborations .collab-detail {
  display: none;
  padding: 0.15rem 0 0.9rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: none;
  color: #3d3a34;
  line-height: 1.55;
}
#collaborations .collab-item.is-open .collab-toggle {
  text-decoration: underline;
}
#collaborations .collab-item.is-open .collab-detail {
  display: block;
}
#collaborations .collab-entry + .collab-entry {
  margin-top: 0.65rem;
}
#collaborations .collab-song {
  margin: 0 0 0.25rem;
}
#collaborations .collab-song a {
  text-decoration: none;
}
#collaborations .collab-song a:hover, #collaborations .collab-song a:focus-visible {
  text-decoration: underline;
}
#collaborations .collab-credit {
  margin: 0;
  color: #7a756a;
}

#about .container {
  align-items: flex-start;
}
#about .about-photo {
  width: 100%;
  max-width: 420px;
  margin-bottom: 30px;
}
#about .about-photo img {
  width: 100%;
  height: auto;
  display: block;
}
#about .about-bio {
  text-transform: none;
  letter-spacing: 0.03em;
  line-height: 1.7;
  font-size: 14px;
}

#watch .watch-featured {
  grid-column: 1/-1;
  margin-bottom: 15px;
}
#watch .watch-grid {
  display: contents;
}

body.page-home footer,
body.page-side footer {
  color: #1a1916;
  background: #ece8de;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-30px) translateX(-50%);
  }
  60% {
    transform: translateY(-15px) translateX(-50%);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-30px) translateX(-50%);
  }
  60% {
    transform: translateY(-15px) translateX(-50%);
  }
}
.bit-widget .bit-event .bit-offers-text,
.bit-widget .bit-play-my-city-button {
  color: black !important;
}

.bit-widget-container {
  width: 100%;
}

.laylo {
  width: 100%;
}

.cc-window {
  z-index: 9999;
}

.cc-deny,
.cc-link {
  color: black !important;
}

.cc-allow {
  color: white !important;
}
