@charset "UTF-8";
:root {
  --bf-anim-fade-quick: 0.15s;
  --bf-anim-fade-long: 0.4s;
  --bf-anim-ease: ease-out;
  --bf-border-width-sm: 1px;
  --bf-border-width-md: 3px;
  --bf-border-width-lg: 0.5rem;
  --bf-border-body-sm: 1rem;
  --bf-border-body-lg: 2rem;
  --bf-border-text-lg: 1.2rem;
  --bf-color-brand-teal: #1c9cbd;
  --bf-color-brand-green: #8abe56;
  --bf-color-brand-yellow: #f7ce46;
  --bf-color-brand-purple: #4256a1;
  --bf-color-brand-blue-dark: #3c57a6;
  --bf-color-brand-red: #da3832;
  --bf-color-brand-pink: #ec248f;
  --bf-color-brand-orange: #bd6700;
  --bf-color-brand-tan: #a29e5e;
  --bf-color-brand-cream: #ebf2dd;
  --bf-color-neutral-white: #ffffff;
  --bf-color-brand-orange-light: #cd760c;
  --bf-color-brand-cream-medium: #efeed4;
  --bf-color-brand-cream-dark: #e3e1bf;
  --bf-color-brand-tan-dark: #717141;
  --bf-color-brand-blue-light: #69ccff;
  --bf-color-brand-black: #000000;
  --bf-l-max-width: 69rem;
  --bf-l-linelength-width: 44rem;
  --bf-box-shadow-sm: 0px 1px 2px 1px rgba(0, 0, 0, 0.2);
  --bf-box-shadow-md: 0 0.5rem 0.375rem -0.375rem rgba(0, 0, 0, 0.1);
  --bf-box-shadow-subtle: 0 10px 0 -5px var(--bf-color-brand-red);
  --bf-box-shadow-bold: 0 10px 0 -5px var(--bf-color-brand-yellow),
    0 20px 0 -10px var(--bf-color-brand-green),
    0 30px 0 -16px var(--bf-color-brand-cream);
  --bf-font-family-secondary: "bottlenecksh-regular", sans-serif;
  --bf-font-weight-bold: bold;
  --bf-font-size-xl: 7rem;
  --bf-line-height-md: 1.3;
  --bf-font-size-md: 1.3rem;
  --bf-font-family-primary: "Vulf Sans", "HelveticaNeue", "Helvetica",
    sans-serif;
  --bf-line-height-sm: 1;
  --bf-line-height-lg: 1.6;
  --bf-font-size-sm: 1rem;
  --bf-font-size-lg: 3.7rem;
  --bf-font-size-xs: 0.8rem;
  --bf-font-size-md-2: 2.4rem;
  --bf-line-height-sm-2: 1.2;
  --bf-font-size-lg-2: 4.5rem;
  --bf-font-weight-regular: 400;
  --bf-letter-spacing-small: 0.5px;
  --bf-font-weight-black: 800;
  --bf-z-index-top: 99999;
  --bf-z-index-500: 500;
  --bf-z-index-400: 400;
  --bf-z-index-300: 300;
  --bf-z-index-200: 200;
  --bf-z-index-100: 100;
  --bf-z-index-0: 0;
  --bf-z-index-bottom: -100;
  --bf-theme-color-link-hover: #cd760c;
  --bf-theme-form-input-border-color: #bd6700;
  --bf-theme-form-input-border-width: 3px;
  --bf-theme-color-core-text: #110000;
  --bf-theme-border-radius: 0;
  --bf-theme-color-primary: #bd6700;
  --bf-theme-border-color-subtle: #e3e1bf;
  --bf-theme-color-inverted: #f6f5de;
  --bf-theme-form-input-border-color-focus: #bd6700;
  --bf-theme-box-shadow: 0 0.5rem 0.375rem -0.375rem rgba(0, 0, 0, 0.1);
  --bf-theme-form-input-border-color-hover: #bd6700;
  --bf-theme-color-link: #bd6700;
  --bf-theme-color-neutral-medium: #110000;
  --bf-theme-color-neutral-dark: #110000;
  --bf-theme-form-input-border-radius: 0;
  --bf-theme-color-neutral-light: #ffffff;
  --bf-theme-color-primary-hover: #cd760c;
  --size-base-unit: 0.5rem;
}

@font-face {
  font-family: "bottlenecksh-regular";
  src: url("./fonts/bottlenecksh-regular-webfont.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "shackletoncondensed";
  src: url("./fonts/shackleton-condensed-webfont.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
* {
  box-sizing: border-box;
}

body {
  font-size: 4ch;
  margin: 0 auto;
  font-family: "shackletoncondensed";
  background: var(--bf-color-brand-orange);
  color: var(--bf-color-brand-cream);
}
body:before {
  content: "";
  display: block;
  width: 4vw;
  height: 100%;
  background: url(./images/border-left.svg) repeat-y;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
}
body:after {
  content: "";
  display: block;
  width: 4vw;
  height: 100%;
  background: url(./images/border-right.svg) repeat-y;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
@media all and (max-width: 34rem) {
  body {
    font-size: 3ch;
  }
}

.home {
  background: url(./images/bg-waves.svg) no-repeat;
  background-size: 100% auto;
  background-position: center top;
  background-attachment: fixed;
  background-color: var(--bf-color-brand-teal);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "bottlenecksh-regular";
  text-wrap: balance;
  text-transform: uppercase;
  letter-spacing: 5px;
}

h1 {
  font-size: clamp(1vw, 12vw, 18rem);
}

h2 {
  font-size: clamp(3ch, 8vw, 13rem);
  line-height: 1.1;
}

h3 {
  font-size: clamp(2ch, 5vw, 5rem);
}

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 4px solid var(--bf-color-brand-black);
  outline: 1rem solid rgba(205, 202, 162, 0);
  transition: all var(--bf-anim-fade-quick) ease-in;
}
a:hover, a:focus {
  background: var(--bf-color-brand-blue-light);
  outline: 3px solid rgba(205, 202, 162, 0.16);
  border-bottom-width: 3px;
}
a:focus-visible {
  outline-offset: calc(var(--size-base-unit) * 0.5);
  outline: 3px solid var(--bf-theme-color-primary);
}
.c-section--black a {
  border-bottom-color: var(--bf-color-brand-cream);
}

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

table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--bf-color-brand-cream);
  border-spacing: 0;
  font-size: 1rem;
  margin-bottom: 1rem;
}

th {
  text-align: left;
  background-color: var(--bf-color-brand-cream);
  color: var(--bf-color-brand-black);
  padding: 1rem;
}

td {
  width: 25%;
  padding: 1rem;
  border: 1px solid var(--bf-color-brand-cream);
}

.c-header {
  background: url(./images/border-top.svg) no-repeat;
  background-size: contain;
  padding-top: 12%;
  padding-left: 10vw;
  padding-right: 10vw;
  position: relative;
  z-index: 2;
}

.c-main {
  position: relative;
  z-index: 4;
}

.c-footer {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 52vw;
  background: url(./images/border-bottom.svg) no-repeat;
  background-size: 100%;
  background-position: center bottom;
  padding-top: 20vh;
  padding-left: 6rem;
  padding-right: 6rem;
  padding-bottom: 12vw;
  margin-top: -32vw;
  position: relative;
  z-index: 3;
}

.c-btn--bottom-cta {
  margin-bottom: calc(var(--size-base-unit) * 20);
}
@media all and (min-width: 40rem) {
  .c-btn--bottom-cta {
    margin-bottom: calc(var(--size-base-unit) * 12);
  }
}

.c-colophon {
  margin-top: 12rem;
  font-size: 1.4rem;
}

.c-hero {
  width: 100%;
  height: auto;
  mix-blend-mode: difference;
  height: 80vh;
  object-fit: cover;
}

.c-hero--bare {
  mix-blend-mode: normal;
}

.c-title-img-wrap {
  position: relative;
  z-index: 1;
}
.c-title-img-wrap:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  display: block;
  width: 3.2vw;
  height: 3.2vw;
  background: url(./images/dot-green.svg) no-repeat;
  background-size: 100% 100%;
  animation: float 3s ease-in-out infinite alternate;
  animation-delay: 0.6s;
}
.c-title-img-wrap:after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1;
  display: block;
  width: 3.2vw;
  height: 3.2vw;
  background: url(./images/dot-pink.svg) no-repeat;
  background-size: 100% 100%;
  animation: float 4s ease-in-out infinite alternate;
  animation-delay: 0.4s;
}

.c-title-img {
  display: block;
  margin-bottom: -25%;
  position: relative;
  z-index: 1;
}

.c-headline {
  text-align: center;
  font-family: "bottlenecksh-regular";
  text-transform: uppercase;
  font-weight: bold;
  font-size: clamp(3ch, 8vw, 13rem);
  line-height: 1.1;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--bf-color-brand-black);
  margin: 0 0 2rem;
  paint-order: fill stroke;
  text-wrap: balance;
}
.c-headline strong {
  color: var(--bf-color-brand-yellow);
}

.c-headline--small {
  font-size: clamp(1.75ch, 2.8vw, 6rem);
  margin: 0 0 2rem;
  -webkit-text-stroke-width: 1px;
}

.c-headline--medium {
  font-size: clamp(3ch, 4vw, 8rem);
  margin: 0 0 2rem;
}

.c-text-passage {
  text-wrap: balance;
  line-height: 1.3;
}

.c-text-passage--center {
  text-align: center;
}

.c-brad-face-wrap {
  position: relative;
}
.c-brad-face-wrap:before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% - 30vw);
  z-index: 1;
  display: block;
  width: 4vw;
  height: 4vw;
  background: url(./images/dot-orange.svg) no-repeat;
  background-size: 100% 100%;
  animation: float 3s ease-in-out infinite alternate;
}
.c-brad-face-wrap:after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(50% - 30vw);
  z-index: 1;
  display: block;
  width: 3.8vw;
  height: 3.8vw;
  background: url(./images/dot-purple.svg) no-repeat;
  background-size: 100% 100%;
  animation: float 4s ease-in-out infinite alternate;
  animation-delay: 0.3s;
}

.c-brad-face {
  display: block;
  margin: 0 auto;
  width: 40vw;
  margin-bottom: 2rem;
  position: relative;
  animation: pulse 4s ease-in-out infinite alternate;
  z-index: 1;
}
.c-brad-face:hover {
  animation: spin 0.5s ease-in-out;
}
.c-brad-face:before {
  content: "";
  position: absolute;
  top: 70%;
  left: calc(50% - 10vw);
  z-index: 2;
  display: block;
  width: 3rem;
  height: 3rem;
  background: url(./images/dot-green.svg) no-repeat;
  background-size: 100% 100%;
  animation: float 3s ease-in-out infinite alternate;
}
.c-brad-face:after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(50% - 10vw);
  z-index: 2;
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background: url(./images/dot-blue.svg) no-repeat;
  background-size: 100% 100%;
  animation: float 4s ease-in-out infinite alternate;
  animation-delay: 0.1s;
}

.c-logistics {
  display: inline-block;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2.4rem;
  max-height: 12rem;
  background: var(--bf-color-brand-black);
  clip-path: polygon(100% 0%, 92% 50%, 100% 100%, 0% 100%, 8% 50%, 0% 0%);
  margin-bottom: 0rem;
  margin-top: -0.5rem;
  paint-order: initial;
}
@media all and (min-width: 40rem) {
  .c-logistics {
    width: 50vw;
    margin-bottom: 1rem;
  }
}

.c-lineup {
  font-size: clamp(2.4ch, 4vw, 3.6rem);
  color: var(--bf-color-brand-black);
  line-height: 1;
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  text-align: center;
}
.c-lineup li {
  display: inline;
  margin-right: -8px;
}
.c-lineup li:after {
  content: "•";
  display: inline-block;
  margin: 0 0.5ch;
  color: var(--bf-color-brand-red);
}
.c-lineup li:last-child:after {
  content: "";
}

.c-lineup--small {
  font-size: clamp(1.6ch, 1.4vw, 2rem);
}
.c-lineup--small li:after {
  color: var(--bf-color-brand-purple);
}

.c-callout {
  min-height: 100vh;
  background: var(--bf-color-brand-blue-light);
  color: var(--bf-color-brand-cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  margin-bottom: calc(var(--size-base-unit) * 8);
  font-family: "bottlenecksh-regular";
  font-size: 12vw;
  line-height: 1.1;
  text-align: center;
  letter-spacing: 8px;
  text-transform: uppercase;
}
@media all and (max-width: 40rem) {
  .c-callout {
    font-size: 18vw;
  }
}

.c-callout__text {
  text-wrap: balance;
  position: relative;
  z-index: 1;
}
.c-callout__text:after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  -webkit-text-stroke: 0.4ch var(--bf-color-brand-orange);
  z-index: -1;
}
.c-callout__text:after {
  animation: stroke-animation 2s linear infinite;
}

.c-btn {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  margin-left: 13vw;
  margin-right: 13vw;
  padding: 2rem 0.5rem;
  font-family: "bottlenecksh-regular";
  text-transform: uppercase;
  font-weight: bold;
  font-size: clamp(2.8ch, 6vw, 7rem);
  line-height: 1;
  letter-spacing: 2px;
  border: 0;
  border-radius: 1rem;
  white-space: nowrap;
  color: var(--bf-color-brand-black);
  -webkit-text-stroke-color: var(--bf-color-brand-cream);
  -webkit-text-stroke-width: 1px;
  paint-order: fill stroke;
  background: var(--bf-color-brand-orange);
  box-shadow: 0 0 0 0.25rem var(--bf-color-brand-green), 0 0 0 0.5rem var(--bf-color-brand-yellow), 0 0 0 0.75rem var(--bf-color-brand-red), 0 0 0 1rem var(--bf-color-brand-black);
  animation: pulse 4s ease-in-out infinite alternate;
}
.c-btn:after {
  content: "➢";
  font-size: 70%;
}
.c-btn:hover, .c-btn:focus {
  border-width: 0.25rem;
}
@media all and (min-width: 40rem) {
  .c-btn {
    letter-spacing: 4px;
    box-shadow: 0 0 0 0.5rem var(--bf-color-brand-green), 0 0 0 1rem var(--bf-color-brand-yellow), 0 0 0 1.5rem var(--bf-color-brand-red), 0 0 0 2rem var(--bf-color-brand-black);
  }
}

.c-page-header {
  color: var(--bf-theme-color-inverted);
  margin-bottom: calc(var(--size-base-unit) * 6);
  display: flex;
  justify-content: center;
  text-wrap: balance;
  margin: 0 auto;
}

/**
   * Page header title
   */
.c-page-header__title {
  text-align: center;
  position: relative;
  z-index: 1;
  margin: 0 0 -1.2ch;
  top: -1.2ch;
  position: relative;
  z-index: 1;
}
.c-page-header--no-margin .c-page-header__title {
  margin-top: calc(var(--size-base-unit) * 6);
  margin-bottom: 0;
  top: 0;
}
.c-page-header__title:after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  -webkit-text-stroke: 0.4ch var(--bf-color-brand-orange);
  z-index: -1;
}

.l-container {
  width: 100%;
  max-width: var(--bf-l-max-width);
  padding-right: calc(var(--size-base-unit) * 4);
  padding-left: calc(var(--size-base-unit) * 4);
  margin: 0 auto;
}
@media all and (min-width: 55rem) {
  .l-container {
    padding-right: calc(var(--size-base-unit) * 8);
    padding-left: calc(var(--size-base-unit) * 8);
  }
}

.l-container--center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.frame {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  border: 0.5rem solid var(--bf-color-brand-cream);
  box-shadow: 0 10px 0 -5px var(--bf-color-brand-blue-dark), 0 20px 0 -10px var(--bf-color-brand-blue-light), 0 30px 0 -16px var(--bf-color-brand-black);
  margin-bottom: calc(var(--size-base-unit) * 8);
}

.c-section {
  background: var(--bf-color-brand-orange);
  padding-bottom: 6ch;
  margin-left: 4vw;
  margin-right: 4vw;
}

.c-section--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
}

.c-section--transparent {
  background: transparent;
}

.c-section--black {
  background: var(--bf-color-brand-black);
}
.c-section--black strong {
  color: var(--bf-color-brand-orange-light);
}

.c-section--blue-dark {
  background: var(--bf-color-brand-blue-dark);
}

.c-section--blue-light {
  background: var(--bf-color-brand-blue-light);
  color: var(--bf-color-brand-black);
}

.c-section--purple {
  background: var(--bf-color-brand-purple);
}

.c-section--orange {
  background: var(--bf-color-brand-orange);
  border-bottom: 0.3rem solid var(--bf-color-brand-black);
}

.c-section--yellow {
  background: var(--bf-color-brand-yellow);
  color: var(--bf-color-brand-black);
}

.c-section__header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 4vw;
}

.c-section__title {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 auto -1ch;
  position: relative;
  z-index: 1;
  text-align: center;
  top: -1ch;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: black;
  letter-spacing: 4px;
}
.c-section__title:after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  -webkit-text-stroke: 0.4ch var(--bf-color-brand-orange);
  z-index: -1;
}
.c-section--black .c-section__title {
  position: relative;
  z-index: 1;
}
.c-section--black .c-section__title:after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  -webkit-text-stroke: 0.4ch var(--bf-color-brand-black);
  z-index: -1;
}
.c-section--purple .c-section__title {
  position: relative;
  z-index: 1;
}
.c-section--purple .c-section__title:after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  -webkit-text-stroke: 0.4ch var(--bf-color-brand-purple);
  z-index: -1;
}
.c-section--blue-dark .c-section__title {
  position: relative;
  z-index: 1;
}
.c-section--blue-dark .c-section__title:after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  -webkit-text-stroke: 0.4ch var(--bf-color-brand-blue-dark);
  z-index: -1;
}
.c-section--yellow .c-section__title {
  color: var(--bf-color-brand-cream);
  position: relative;
  z-index: 1;
}
.c-section--yellow .c-section__title:after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  -webkit-text-stroke: 0.4ch var(--bf-color-brand-yellow);
  z-index: -1;
}
.c-section--blue-light .c-section__title {
  position: relative;
  z-index: 1;
  color: var(--bf-color-brand-black);
}
.c-section--blue-light .c-section__title:after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  -webkit-text-stroke: 0.4ch var(--bf-color-brand-blue-light);
  z-index: -1;
}

.chunker-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: -1.4rem;
}

.chunker {
  font-family: "bottlenecksh-regular";
  white-space: nowrap;
  font-size: 14vw;
  line-height: 0.8;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--bf-color-brand-cream);
  display: block;
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0.4ex 0;
  -webkit-text-stroke: 1px var(--bf-color-brand-black);
  paint-order: fill stroke;
}
.chunker:before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  -webkit-text-stroke: 0.6ch var(--bf-color-brand-yellow);
  z-index: -3;
}
.chunker:after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  -webkit-text-stroke: 1ch var(--bf-color-brand-black);
  z-index: -4;
}

.chunker span {
  display: block;
  position: relative;
  z-index: 1;
}
.chunker span:before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  -webkit-text-stroke: 0.2ch var(--bf-color-brand-red);
  z-index: -1;
}
.chunker span:after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  -webkit-text-stroke: 0.4ch var(--bf-color-brand-red);
  z-index: -2;
}

#where {
  border-top: 8px solid var(--bf-color-brand-black);
  border-bottom: 8px solid var(--bf-color-brand-black);
  background: url("./images/mr-smalls.jpg") no-repeat var(--bf-color-brand-blue-dark) center center;
  background-size: cover;
  background-attachment: local;
  background-blend-mode: screen;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.8);
  min-height: 85vh;
}

.iframe-form {
  width: 100%;
}

.iframe--google {
  display: block;
  width: 100%;
  height: auto;
}

.song {
  font-size: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 4rem;
  overflow: hidden;
  border: 0.5rem solid var(--bf-color-brand-cream);
  box-shadow: 0 10px 0 -5px var(--bf-color-brand-blue-dark), 0 20px 0 -10px var(--bf-color-brand-blue-light), 0 30px 0 -16px var(--bf-color-brand-black);
}

.song__title {
  font-size: 2.2rem;
  background: var(--bf-color-brand-cream);
  color: var(--bf-color-brand-orange);
  padding: 1rem 2rem;
  margin: 0;
}

.song__subtitle {
  font-family: var(--bf-font-family-primary);
  font-size: 1.2rem;
}

.song__info {
  padding: 1rem 2rem;
  display: grid;
  gap: 1rem;
}
@media all and (min-width: 40rem) {
  .song__info {
    gap: 4rem;
    grid-template-columns: 1fr 1fr;
  }
}

iframe {
  display: block;
}

iframe[src*=youtube],
iframe[src*=vimeo],
iframe[src*=google] {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.l-container iframe[src*=youtube],
.l-container iframe[src*=vimeo],
.l-container iframe[src*=google] {
  margin-bottom: 2rem;
}

.song__instrumentation-list {
  padding: 0;
}

.timeline {
  list-style: none;
  border-left: 0.5rem solid var(--bf-color-brand-cream);
  padding-left: 4rem;
}

.timeline > li {
  margin-bottom: 6rem;
  margin-top: -1rem;
  position: relative;
}
.timeline > li:before {
  content: "";
  display: block;
  background: var(--bf-color-brand-black);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: -5.75rem;
}

.timeline > li.current:before {
  background: var(--bf-color-brand-blue-light);
}

.timeline strong {
  display: block;
  font-size: 1.4rem;
  font-weight: normal;
  color: var(--bf-color-brand-black);
  margin-top: 1.8rem;
}

.c-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-list > li {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.c-song-list {
  list-style: decimal;
}
.c-song-list li::marker {
  color: var(--bf-color-brand-orange-light);
  opacity: 0.05;
  background: black;
  display: inline-block;
  margin-right: 1rem;
  position: relative;
  top: -5ch;
}
.c-song-list h2 {
  margin: 0;
}

.download-btn {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
}

.accordion h2 {
  margin: 0;
}

.accordion-trigger,
.song-title {
  border: 0;
  background: none;
  font-family: "shackletoncondensed";
  text-transform: none;
  text-wrap: balance;
  font-size: clamp(1.6ch, 4vw, 2.4rem);
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.1;
  text-align: left;
  margin: 0;
  padding: 0;
  color: var(--bf-color-brand-cream);
  transition: all ease 0.3s;
  cursor: pointer;
  display: block;
  width: 100%;
  border-radius: 0.5rem;
  outline: 0;
}
.accordion-trigger:hover, .accordion-trigger:focus, .accordion-trigger.active,
.song-title:hover,
.song-title:focus,
.song-title.active {
  background: none;
  color: var(--bf-color-brand-yellow);
  outline: 0;
}

.accordion-panel {
  padding: calc(var(--size-base-unit) * 2) 0;
}

summary {
  cursor: pointer;
  text-wrap: balance;
  font-size: clamp(2ch, 5vw, 3rem);
  font-weight: bold;
}

details > div {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

details h3 {
  margin-bottom: 0.5rem;
}

details iframe {
  border: 3px solid var(--bf-color-brand-black);
  box-shadow: 0 10px 0 -5px var(--bf-color-brand-orange-light), 0 20px 0 -10px var(--bf-color-brand-blue-light), 0 30px 0 -16px var(--bf-color-brand-black);
}

details a[href^=http] {
  position: relative;
}

details a[href^=http]::after {
  content: "→";
  position: absolute;
  right: -1.25em;
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0.25em;
  background-size: 100%;
}

.c-image {
  display: block;
  border: 3px solid var(--bf-color-brand-black);
  box-shadow: 0 10px 0 -5px var(--bf-color-brand-orange-light), 0 20px 0 -10px var(--bf-color-brand-blue-light), 0 30px 0 -16px var(--bf-color-brand-black);
  margin-bottom: 1.5rem;
}

@media all and (min-width: 30rem) {
  .c-image--capped {
    max-width: 50%;
  }
}

.funky-grid {
  list-style: none;
  margin: 0 4vw;
  padding: 0;
  display: grid;
  gap: 0.25rem;
}
.funky-grid video,
.funky-grid iframe {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.funky-grid li {
  position: relative;
  display: grid;
  align-items: center;
}
.funky-grid li.portrait {
  background: var(--bf-color-brand-blue-light);
  grid-row: span 2;
}
.funky-grid li.landscape {
  background: var(--bf-color-brand-cream);
}
.funky-grid li.square {
  background: var(--bf-color-brand-blue-dark);
}
.funky-grid img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  height: revert-layer;
}

#super-octavius {
  margin-bottom: 6rem;
  border-bottom: 0;
}

#super-octavius:after {
  content: "SET BREAK";
  display: block;
  border-top: dashed 2px var(--bf-color-brand-cream);
  font-size: var(--bf-font-size-md);
  margin: 6rem 0 -5rem;
}

.u-margin-bottom-sm {
  margin-bottom: calc(var(--size-base-unit) * 10) !important;
}

.u-margin-bottom-md {
  margin-bottom: calc(var(--size-base-unit) * 10) !important;
}
@media all and (min-width: 55rem) {
  .u-margin-bottom-md {
    margin-bottom: calc(var(--size-base-unit) * 30) !important;
  }
}

.u-margin-bottom-lg {
  margin-bottom: calc(var(--size-base-unit) * 20) !important;
}

.u-margin-bottom-xl {
  margin-bottom: calc(var(--size-base-unit) * 30) !important;
}

@keyframes stroke-animation {
  0% {
    -webkit-text-stroke-color: var(--bf-color-brand-orange);
  }
  24.9999% {
    -webkit-text-stroke-color: var(--bf-color-brand-orange);
  }
  25% {
    -webkit-text-stroke-color: var(--bf-color-brand-black);
  }
  49.9999% {
    -webkit-text-stroke-color: var(--bf-color-brand-black);
  }
  50% {
    -webkit-text-stroke-color: var(--bf-color-brand-orange);
  }
  74.9999% {
    -webkit-text-stroke-color: var(--bf-color-brand-orange);
  }
  75% {
    -webkit-text-stroke-color: var(--bf-color-brand-blue-dark);
  }
  100% {
    -webkit-text-stroke-color: var(--bf-color-brand-blue-dark);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes float {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(2rem);
  }
}
@keyframes pulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}
#now-playing {
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#track-title {
  margin: 0;
  background-color: var(--bf-color-brand-black);
  display: inline;
  border-radius: 0.8rem;
  padding: 0.2rem 1rem;
  font-size: 1rem;
}

#music-player {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: -webkit-sticky; /* For Safari */
  position: sticky;
  top: 0;
  width: 100%;
  background: url(./images/bg-waves.svg);
  background-size: 50% auto;
  background-position: center -200px;
  background-size: cover;
  background-attachment: fixed;
  background-color: var(--bf-color-brand-teal);
  z-index: 1000;
  border-bottom: 6px solid var(--bf-color-brand-black);
  box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.2);
}

#controls {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

#prev,
#next,
#play-pause {
  background: var(--bf-color-brand-purple);
  color: var(--bf-color-neutral-white);
  font-family: var(--bf-font-family-secondary);
  text-transform: uppercase;
  font-size: clamp(2ch, 4vw, 3rem);
  border: 0;
  border-left: 6px solid var(--bf-color-brand-black);
  border-right: 6px solid var(--bf-color-brand-black);
  cursor: pointer;
  outline: none;
  height: 100%;
  padding: 5vw;
}
#prev:hover, #prev:focus,
#next:hover,
#next:focus,
#play-pause:hover,
#play-pause:focus {
  background: var(--bf-color-brand-blue-light);
}
@media all and (min-width: 40rem) {
  #prev,
  #next,
  #play-pause {
    padding: 2rem;
  }
}

#prev {
  border-left: 0;
}
#prev:before {
  content: "< ";
}

#next {
  border-right: 0;
}
#next:after {
  content: " >";
}

#now-playing {
  text-align: center;
  margin-top: 20px;
}

.download-btn {
  cursor: pointer;
  background: none;
  border: 0;
  color: var(--bf-color-neutral-white);
  margin-top: -0.3rem;
  opacity: 0.3;
  transition: opacity 0.3s;
}
.download-btn:hover, .download-btn:focus {
  opacity: 1;
}

/*# sourceMappingURL=styles.css.map */
