/*
 * Homepage sections
 *
 * Hero, tour, newsletter, store, music, Patreon, and community. Shared
 * primitives live in site.css; overlay/card components live in components.css.
 */

/* Release hero */

.hero-section {
  --hero-default-background-image: url("/images/release-a-long-cursed-sleep.jpg");
  display: block;
  height: auto;
  background-color: #050505;
  background-image:
    linear-gradient(rgba(9, 8, 8, 0.35), rgba(9, 8, 8, 0.35)),
    var(--hero-background-image, var(--hero-default-background-image));
  background-position: 50% 10%;
  background-repeat: no-repeat;
  background-size: cover;
}

.dev-hero-shell {
  position: relative;
  overflow: hidden;
}

.dev-hero-shell-video .hero-container {
  position: relative;
  z-index: 2;
}

.dev-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dev-hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(8, 7, 7, 0.28);
}

.hero-container {
  position: relative;
  z-index: 50;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--content-width);
  height: 100vh;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 600px;
}

.hero-heading {
  margin: 0 0 16px;
  padding: 0;
  color: #cdb27d;
  font-family: var(--font-body);
  font-size: 3rem;
  font-weight: 700;
  line-height: 3.5rem;
  text-align: center;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.7));
}

.hero-description.section-copy {
  width: auto;
  max-width: 100%;
  margin: 0 0 24px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: max-content;
  max-width: 100%;
}

.hero-icon-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
}

.hero-icon-link,
.hero-icon-link:link,
.hero-icon-link:visited {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: transparent;
  text-decoration: none;
  transition: color 300ms ease, border-color 300ms ease, background-color 300ms ease;
}

.hero-icon-link:hover,
.hero-icon-link:focus-visible {
  color: #fff;
  border-color: var(--bb-red);
  background: var(--bb-red);
}

.hero-icon-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.hero-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.hero-icon svg {
  display: block;
  height: 1em;
}

.hero-button.button-primary {
  width: 100%;
  margin-bottom: 8px;
  padding: 24px 48px;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1rem;
}

/* Cinematic tour background */

.tour-video-experience {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  color: #fff;
  background: #020203;
}

.tour-video-stage {
  position: sticky;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
  background: radial-gradient(circle at 50% 25%, #252022 0%, #09090a 54%, #000 100%);
}

.tour-video-stage video,
.tour-video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tour-video-stage video {
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7) contrast(1.04) saturate(0.88);
  transform: scale(1.015);
}

.tour-video-poster {
  background-image: var(--tour-poster-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(0.7) contrast(1.04) saturate(0.88);
  transform: scale(1.015);
}

.tour-video-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, transparent 35%, transparent 65%, rgba(0, 0, 0, 0.34) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.02) 24%, rgba(0, 0, 0, 0.04) 68%, rgba(0, 0, 0, 0.58) 100%);
}

.tour-video-scroll {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  margin-top: -100vh;
  padding: clamp(130px, 16vh, 190px) 0 clamp(110px, 14vh, 170px);
}

.tour-video-content.site-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(1120px, calc(100% - 48px));
  max-width: 1120px;
  padding: 16px 0;
}

.tour-section-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto clamp(38px, 5vw, 64px);
}

.tour-video-content .section-title {
  margin-bottom: 18px;
  color: #fff;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.9);
}

.tour-video-content .tour-intro-copy {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.9);
}

.tour-list-wrapper {
  width: 100%;
  min-height: 150px;
}

.tour-video-content .tour-list-wrapper {
  padding: 10px clamp(8px, 2vw, 24px) 24px;
}

.tour-selection-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1rem;
  text-transform: uppercase;
}

.tour-video-content .tour-selection-wrapper {
  gap: 28px;
  margin-bottom: 0;
  padding: 20px 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.tour-selector-upcoming,
.tour-selector-past {
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.tour-video-content .tour-selector-upcoming,
.tour-video-content .tour-selector-past {
  position: relative;
  min-height: 44px;
  padding: 12px 2px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  transition: color 420ms ease, opacity 420ms ease;
}

.tour-video-content .tour-selector-upcoming::after,
.tour-video-content .tour-selector-past::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;
  height: 1px;
  background: var(--bb-red);
  transition: right 420ms var(--ease-cinematic), left 420ms var(--ease-cinematic);
}

.tour-video-content .tour-selector-upcoming:hover,
.tour-video-content .tour-selector-past:hover,
.tour-video-content .tour-selector-upcoming.is-active,
.tour-video-content .tour-selector-past.is-active {
  color: #fff;
}

.tour-video-content .tour-selector-upcoming.is-active::after,
.tour-video-content .tour-selector-past.is-active::after {
  right: 0;
  left: 0;
}

.tour-selector-upcoming:focus-visible,
.tour-selector-past:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.tour-list,
.tour-list-past {
  display: none;
}

.tour-list.is-active,
.tour-list-past.is-active {
  display: block;
}

.tour-item,
.tour-item-past {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(165, 165, 165, 0.75);
}

.tour-video-content .tour-item,
.tour-video-content .tour-item-past {
  padding: 22px 8px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.13);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95);
  transition: background-color 380ms ease, border-color 380ms ease;
}

.tour-video-content .tour-item:hover,
.tour-video-content .tour-item-past:hover {
  border-color: rgba(var(--bb-red-rgb), 0.42);
  background: linear-gradient(90deg, transparent, rgba(var(--bb-red-rgb), 0.055), transparent);
}

.tour-video-content .tour-item-empty {
  justify-content: center;
  text-align: center;
}

.tour-item-info,
.tour-item-info-past {
  display: flex;
  align-items: center;
}

.tour-item-date,
.tour-item-date-past {
  width: 200px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
}

.tour-video-content .tour-item-date,
.tour-video-content .tour-item-date-past {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.tour-item-venue-description,
.tour-item-description-past {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.tour-item-venue,
.tour-item-venue-past,
.tour-item-location,
.tour-item-location-past {
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
}

.tour-item-venue,
.tour-item-venue-past {
  font-weight: 500;
}

.tour-video-content .tour-item-venue,
.tour-video-content .tour-item-venue-past {
  color: #fff;
  font-size: 1.08rem;
}

.tour-video-content .tour-item-location,
.tour-video-content .tour-item-location-past {
  color: rgba(255, 255, 255, 0.62);
}

.tour-item-past-fill {
  height: 0;
}

.tour-item-button-wrapper {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.tour-video-content .tour-item-button-wrapper {
  display: grid;
  grid-template-columns: 118px 151px;
  flex: 0 0 285px;
  gap: 16px;
  width: 285px;
}

.tour-video-content .tour-action-slot {
  display: flex;
  min-width: 0;
}

.tour-video-content .tour-action-ticket { grid-column: 1; }
.tour-video-content .tour-action-vip { grid-column: 2; }

.tour-video-content .tour-action-slot > .button-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 16px 12px;
  text-align: center;
}

/* Newsletter */

.mailing-list-section {
  position: relative;
  display: grid;
  place-items: center;
  min-height: calc(100vh - var(--site-header-height));
  min-height: calc(100svh - var(--site-header-height));
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #070707;
}

.mailing-list-background-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.mailing-list-video-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.58) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.64));
}

.mailing-list-content.site-container {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), 900px);
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(116px, 14vh, 170px) 0 clamp(90px, 12vh, 140px);
  text-align: center;
}

.mailing-list-content .section-title {
  margin: 0 auto;
  color: #fff;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.86);
}

.mailing-list-copy.section-copy {
  width: 100%;
  max-width: 680px;
  margin: 32px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  font-weight: 300;
  line-height: 1.8;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.9);
}

.mailing-list-form {
  width: min(100%, 760px);
  margin: 48px auto 0;
}

.mailing-list-form-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: stretch;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.mailing-list-label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.mailing-list-input {
  width: 100%;
  height: 62px;
  margin: 0;
  padding: 0 22px;
  border: 0;
  border-radius: 2px;
  outline: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  transition: background-color 400ms ease, box-shadow 400ms ease;
}

.mailing-list-input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.mailing-list-input:focus {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 -2px 0 var(--bb-red);
}

.mailing-list-submit.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 62px;
  margin: 0;
  padding: 0 28px;
  border-radius: 2px;
  font-size: 0.95rem;
  line-height: 1.2;
  white-space: nowrap;
}

.mailing-list-submit-label-short {
  display: none;
}

.mailing-list-submit.button-primary:hover,
.mailing-list-submit.button-primary:focus-visible {
  box-shadow: 0 0 0 1px rgba(var(--bb-red-rgb), 0.35), 0 12px 32px rgba(var(--bb-red-rgb), 0.22);
}

.mailing-list-message {
  margin-top: 14px;
  padding: 14px 18px;
  border: 0;
  color: #fff;
  background: rgba(3, 3, 4, 0.82);
  font-family: var(--font-body);
}

.mailing-list-note {
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--font-body);
  font-size: 0.75rem;
  line-height: 1.6;
  letter-spacing: 0.12em;
}

/* Store */

.store-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--site-header-height));
  min-height: calc(100svh - var(--site-header-height));
  padding: 225px 0;
  overflow: hidden;
  isolation: isolate;
  background: #080706;
}

.store-background-media,
.store-background-media img,
.store-background-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.store-background-media {
  z-index: 0;
}

.store-background-media img {
  display: block;
  max-width: none;
  object-fit: cover;
  object-position: 50% 75%;
}

.store-background-shade {
  z-index: 1;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.5);
}

.store-content.site-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-top: 80px;
  margin-bottom: 80px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.7));
}

/* Music and videos */

.music-hub-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--site-header-height));
  min-height: calc(100svh - var(--site-header-height));
  padding: clamp(96px, 9vw, 150px) 0 clamp(108px, 10vw, 168px);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background:
    radial-gradient(circle at 4% 24%, rgba(var(--bb-red-rgb), 0.16), transparent 29%),
    radial-gradient(circle at 92% 76%, rgba(var(--bb-red-rgb), 0.07), transparent 26%),
    linear-gradient(145deg, #100607 0%, #070708 43%, #030304 100%);
}

.music-hub-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.34;
  background:
    linear-gradient(118deg, transparent 0 38%, rgba(255, 255, 255, 0.022) 49%, transparent 60%),
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.035), transparent 48%);
}

.music-hub-glow {
  position: absolute;
  top: 16%;
  left: -9vw;
  z-index: -1;
  width: min(42vw, 720px);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.42;
  background: rgba(var(--bb-red-rgb), 0.18);
  filter: blur(110px);
}

.music-hub-shell.site-container {
  width: min(1540px, calc(100% - 72px));
  max-width: 1540px;
  margin: 0 auto;
  padding: 0;
}

.music-hub-heading {
  margin-bottom: clamp(54px, 6vw, 88px);
  text-align: center;
}

.music-intro-copy.section-copy {
  width: 100%;
  max-width: 660px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.65);
}

.music-content-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: start;
}

.music-listen-column {
  position: sticky;
  top: 112px;
  min-width: 0;
}

.music-player-frame {
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.music-player-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 0;
  margin-bottom: 14px;
  padding: 0;
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.music-player-label svg {
  width: 19px;
  height: 19px;
  color: #fff;
}

.music-spotify-player {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
  background: transparent;
}

.music-platform-link,
.music-platform-link:link,
.music-platform-link:visited {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  margin-top: 22px;
  padding-top: 10px;
  padding-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 420ms ease;
}

.music-platform-link span {
  color: var(--bb-red);
  transition: transform 420ms var(--ease-cinematic);
}

.music-platform-link:hover,
.music-platform-link:focus-visible {
  color: var(--bb-red);
}

.music-platform-link:hover span,
.music-platform-link:focus-visible span {
  transform: translateX(5px);
}

.music-platform-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.music-video-column {
  min-width: 0;
}

.music-video-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 44px) clamp(18px, 2vw, 28px);
}

.video-tile,
.video-tile:link,
.video-tile:visited {
  display: block;
  min-width: 0;
  color: #fff;
  text-decoration: none;
}

.music-video-tile.is-featured {
  grid-column: 1 / -1;
}

.video-thumbnail {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 3px;
  background: #0c0c0d;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.music-video-tile.is-featured .video-thumbnail {
  aspect-ratio: 16 / 8.15;
}

.video-thumbnail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.28));
  transition: background-color 650ms var(--ease-cinematic);
}

.video-thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.88);
  transform: scale(1.002);
  transition: transform 950ms var(--ease-cinematic), filter 750ms var(--ease-cinematic);
}

.video-tile:hover .video-thumbnail-image,
.video-tile:focus-visible .video-thumbnail-image {
  filter: brightness(1) saturate(1);
  transform: scale(1.045);
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  opacity: 0;
  background: rgba(0, 0, 0, 0.68);
  transform: translate(-50%, -44%) scale(0.9);
  transition: opacity 560ms var(--ease-cinematic), background-color 560ms var(--ease-cinematic), transform 560ms var(--ease-cinematic);
}

.music-video-tile.is-featured .video-play {
  width: 58px;
  height: 58px;
  opacity: 0.88;
  transform: translate(-50%, -50%);
}

.video-play > span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #fff;
}

.video-tile:hover .video-play,
.video-tile:focus-visible .video-play {
  opacity: 1;
  background: var(--bb-red);
  transform: translate(-50%, -50%) scale(1.07);
}

.video-tile:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 5px;
}

.music-video-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
}

.video-title {
  display: block;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.035em;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 420ms ease;
}

.music-video-tile.is-featured .video-title {
  font-size: clamp(0.9rem, 1.2vw, 1.06rem);
}

.music-video-number {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.28);
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  transition: color 420ms ease;
}

.video-tile:hover .video-title,
.video-tile:hover .music-video-number,
.video-tile:focus-visible .video-title,
.video-tile:focus-visible .music-video-number {
  color: var(--bb-red);
}

.music-youtube-link {
  margin-top: clamp(42px, 5vw, 66px);
}

.js .video-reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.992);
  transition: opacity 800ms var(--ease-cinematic), transform 800ms var(--ease-cinematic);
  transition-delay: calc(var(--reveal-index, 0) * 70ms);
}

.js .video-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Patreon */

.patreon-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--site-header-height));
  min-height: calc(100svh - var(--site-header-height));
  padding: 225px 0;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}

.patreon-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.48));
}

.patreon-background-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.patreon-content.site-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Community */

.community-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--site-header-height));
  min-height: calc(100svh - var(--site-header-height));
  padding: 225px 0;
  overflow: hidden;
  background: #000;
}

.community-content.site-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.community-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
}

.community-image {
  display: block;
  width: 300px;
}

.community-image-media {
  display: block;
}

/* Responsive sections */

@media screen and (min-width: 1440px) {
  .hero-section {
    background-position: 10% 30%;
  }

  .hero-container {
    max-width: var(--content-width-wide);
  }

  .hero-content {
    max-width: 750px;
  }

  .hero-heading {
    margin-bottom: 10px;
  }

  .hero-description.section-copy {
    margin-bottom: 32px;
  }

  .hero-icon-block {
    margin-bottom: 32px;
  }

  .hero-icon-link {
    width: 60px;
    height: 60px;
  }

  .hero-button.button-primary {
    padding: 24px 32px;
    font-size: 2rem;
  }

  .store-content.site-container {
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 1100px) {
  .music-hub-shell.site-container {
    width: min(calc(100% - 48px), 1080px);
  }

  .music-content-grid {
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
    gap: 42px;
  }
}

@media screen and (max-width: 991px) {
  .hero-section {
    --hero-default-background-image: url("/images/release-a-long-cursed-sleep-p-1600.jpg");
  }

  .mailing-list-section,
  .store-section,
  .music-hub-section,
  .patreon-section,
  .community-section {
    min-height: calc(100vh - var(--site-header-height-mobile));
    min-height: calc(100svh - var(--site-header-height-mobile));
  }

  .hero-container {
    max-width: 728px;
    height: auto;
    min-height: calc(100vh - var(--site-header-height-mobile));
    min-height: calc(100svh - var(--site-header-height-mobile));
  }

  .hero-content {
    max-width: none;
  }

  .hero-description.section-copy {
    max-width: 70%;
  }

  .tour-video-content .tour-item,
  .tour-video-content .tour-item-past {
    gap: 20px;
  }

  .tour-video-content .tour-item-date,
  .tour-video-content .tour-item-date-past {
    width: 150px;
  }

  .music-hub-section {
    padding: 94px 0 112px;
  }

  .music-content-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .music-listen-column {
    position: static;
    width: min(100%, 620px);
  }

  .store-section,
  .patreon-section,
  .community-section {
    padding-top: clamp(78px, 12svh, 120px);
    padding-bottom: clamp(78px, 12svh, 120px);
  }

  .store-content.site-container {
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .hero-container {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-content {
    margin-top: 20%;
  }

  .hero-heading {
    margin-bottom: 8px;
    font-size: 3rem;
    line-height: 1.2;
  }

  .hero-description.section-copy {
    max-width: 80%;
    margin-bottom: 12px;
  }

  .hero-icon-link {
    border-color: var(--bb-red);
    background: var(--bb-red);
  }

  .tour-video-experience {
    overflow: hidden;
    scroll-margin-top: var(--site-header-height-mobile);
  }

  .tour-video-stage {
    position: absolute;
    inset: 0;
    height: 100%;
  }

  .tour-video-scroll {
    min-height: calc(100vh - var(--site-header-height-mobile));
    min-height: calc(100svh - var(--site-header-height-mobile));
    margin-top: 0;
    padding: 112px 0 88px;
  }

  .tour-video-content.site-container {
    width: min(calc(100% - 28px), 680px);
  }

  .tour-video-content .tour-list-wrapper {
    padding: 8px 4px 20px;
  }

  .tour-video-content .tour-item,
  .tour-video-content .tour-item-past {
    flex-direction: column;
    align-items: stretch;
    padding: 22px 0;
  }

  .tour-video-content .tour-item-info,
  .tour-video-content .tour-item-info-past {
    align-items: flex-start;
  }

  .tour-video-content .tour-item-date,
  .tour-video-content .tour-item-date-past {
    flex: 0 0 118px;
    width: 118px;
  }

  .tour-video-content .tour-item-button-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    flex-basis: auto;
    width: 100%;
  }

  .tour-video-content .tour-action-button {
    width: 100%;
    min-width: 0;
    text-align: center;
  }

  .mailing-list-background-video {
    object-position: center;
  }

  .mailing-list-content.site-container {
    width: min(calc(100% - 28px), 680px);
    padding-top: 104px;
    padding-bottom: 82px;
  }

  .mailing-list-copy.section-copy {
    margin-top: 24px;
  }

  .mailing-list-form {
    margin-top: 36px;
  }

  .mailing-list-form-inner {
    grid-template-columns: 1fr;
  }

  .mailing-list-input {
    font-size: 1rem;
  }

  .mailing-list-submit.button-primary {
    width: 100%;
    min-width: 0;
  }

  .store-section,
  .patreon-section,
  .community-section {
    padding-top: clamp(72px, 12svh, 104px);
    padding-bottom: clamp(72px, 12svh, 104px);
  }

  .music-platform-link {
    min-height: 44px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 600px) {
  .music-hub-section {
    padding: 82px 0 94px;
  }

  .music-hub-shell.site-container {
    width: calc(100% - 28px);
  }

  .music-hub-heading {
    margin-bottom: 44px;
  }

  .music-video-wall {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .music-video-tile.is-featured {
    grid-column: auto;
  }

  .music-video-tile.is-featured .video-thumbnail {
    aspect-ratio: 16 / 9;
  }

  .video-title {
    white-space: normal;
  }

  .community-image {
    width: clamp(210px, 62vw, 260px);
  }
}

@media screen and (max-width: 479px) {
  .section-title {
    font-size: clamp(2.35rem, 12vw, 2.8rem);
  }

  .hero-section {
    background-position: 55% 10%;
  }

  .hero-heading {
    font-size: 2rem;
  }

  .hero-description.section-copy {
    font-size: 1rem;
  }

  .hero-content {
    margin-top: 0;
  }

  .hero-icon-block {
    gap: 16px;
  }

  .tour-video-content .tour-item-info,
  .tour-video-content .tour-item-info-past {
    flex-direction: column;
    gap: 5px;
  }

  .tour-video-content .tour-item-date,
  .tour-video-content .tour-item-date-past {
    flex-basis: auto;
    width: auto;
  }

  .tour-video-content .tour-item-button-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .tour-video-content .tour-action-button {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .mailing-list-content.site-container {
    padding-top: 72px;
    padding-bottom: 58px;
  }

  .mailing-list-form {
    margin-top: 28px;
  }

  .mailing-list-note {
    margin-top: 14px;
  }
}

@media screen and (max-width: 359px) and (max-height: 650px) and (orientation: portrait) {
  .mailing-list-content.site-container {
    padding-top: 40px;
    padding-bottom: 42px;
    transform: translateY(-16px);
  }

  .mailing-list-content .section-title {
    font-size: 2.1rem;
    line-height: 1.14;
  }

  .mailing-list-copy.section-copy {
    margin-top: 18px;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .mailing-list-form {
    margin-top: 18px;
  }

  .mailing-list-form-inner {
    grid-template-columns: minmax(0, 1fr) 116px;
  }

  .mailing-list-input,
  .mailing-list-submit.button-primary {
    height: 56px;
  }

  .mailing-list-input {
    padding-right: 14px;
    padding-left: 14px;
  }

  .mailing-list-submit.button-primary {
    width: auto;
    padding: 8px;
    font-size: 0.75rem;
  }

  .mailing-list-submit-label-full {
    display: none;
  }

  .mailing-list-submit-label-short {
    display: inline;
  }

  .mailing-list-note {
    margin-top: 10px;
  }
}

@media screen and (max-width: 991px) and (max-height: 600px) and (orientation: landscape) {
  .hero-container {
    min-height: calc(100vh - var(--site-header-height-mobile));
    min-height: calc(100svh - var(--site-header-height-mobile));
    padding: 24px 28px;
  }

  .hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.9fr);
    grid-template-rows: auto auto;
    gap: 10px 30px;
    max-width: 780px;
    margin-top: 0;
  }

  .hero-heading {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    margin: 0;
    font-size: clamp(1.8rem, 4.5vw, 2.35rem);
    line-height: 1.12;
  }

  .hero-description.section-copy {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    max-width: none;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .hero-actions {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    justify-self: center;
  }

  .hero-icon-block {
    gap: 12px;
    margin-bottom: 12px;
  }

  .hero-icon-link {
    width: 44px;
    height: 44px;
  }

  .hero-button.button-primary {
    padding: 18px 28px;
    font-size: 1.1rem;
  }

  .tour-video-scroll {
    padding-top: 62px;
    padding-bottom: 54px;
  }

  .tour-section-intro {
    margin-bottom: 20px;
  }

  .tour-video-content .section-title {
    margin-bottom: 8px;
    font-size: 2.35rem;
  }

  .tour-video-content .tour-selection-wrapper {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .mailing-list-content.site-container {
    padding-top: 32px;
    padding-bottom: 28px;
  }

  .mailing-list-content .section-title {
    font-size: 2.35rem;
  }

  .mailing-list-copy.section-copy {
    margin-top: 14px;
    line-height: 1.55;
  }

  .mailing-list-form {
    margin-top: 18px;
  }

  .mailing-list-form-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .mailing-list-submit.button-primary {
    width: auto;
    min-width: 150px;
  }

  .mailing-list-submit-label-full {
    display: none;
  }

  .mailing-list-submit-label-short {
    display: inline;
  }

  .mailing-list-note {
    margin-top: 10px;
  }

  .store-section,
  .patreon-section,
  .community-section {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .store-content.site-container,
  .patreon-content.site-container,
  .community-content.site-container {
    padding-top: 0;
    padding-bottom: 0;
  }

  .community-image {
    width: 190px;
  }

  .music-hub-section {
    padding-top: 58px;
    padding-bottom: 66px;
  }

  .music-hub-heading {
    margin-bottom: 34px;
  }

  .music-content-grid {
    grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
    gap: 34px;
  }

  .music-listen-column {
    width: auto;
  }

  .music-spotify-card {
    height: 340px;
  }
}

@media screen and (max-width: 767px) and (max-height: 600px) and (orientation: landscape) {
  .mailing-list-content.site-container {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .mailing-list-content .section-title {
    font-size: 1.9rem;
    line-height: 1.1;
  }

  .mailing-list-copy.section-copy {
    margin-top: 6px;
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .mailing-list-form {
    margin-top: 6px;
  }

  .mailing-list-note {
    margin-top: 8px;
  }
}

@media screen and (max-width: 991px) and (max-height: 600px) and (orientation: landscape) {
  .store-section,
  .patreon-section,
  .community-section {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .store-background-media img {
    object-position: 50% 10%;
  }

  .store-content .section-title,
  .patreon-content .section-title,
  .community-content .section-title {
    margin-bottom: 10px;
    font-size: 2rem;
    line-height: 1.1;
  }

  .store-content .section-copy,
  .patreon-content .section-copy {
    max-width: 720px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .store-content .button-large,
  .patreon-content .button-large,
  .community-content .button-large {
    min-height: 48px;
    padding: 14px 20px;
    font-size: 0.78rem;
  }

  .community-content.site-container {
    width: calc(100% - 24px);
  }

  .community-card {
    display: grid;
    grid-template-columns: clamp(110px, 22vw, 150px) minmax(0, 1fr);
    gap: 10px 18px;
    align-items: center;
    width: min(100%, 760px);
    margin-bottom: 0;
  }

  .community-image-media {
    grid-row: 1 / 3;
    grid-column: 1;
  }

  .community-image {
    width: 100%;
  }

  .community-card .section-copy {
    grid-row: 1;
    grid-column: 2;
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .community-card .button-large {
    grid-row: 2;
    grid-column: 2;
    justify-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js .video-reveal,
  .js .video-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .video-thumbnail-image,
  .video-play {
    transition-duration: 0.01ms;
  }
}
