:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray-50: #f8f8f8;
  --color-gray-300: #cccccc;
  --color-gray-500: #787878;
  --color-gray-600: #585858;
  --color-gray-800: #040404;
  --color-black-30: rgba(0, 0, 0, 0.3);
  --color-black-14: rgba(0, 0, 0, 0.14);
  --color-accent: #437a95;
  --color-bg: var(--color-white);
  --color-surface: var(--color-gray-50);
  --color-text: var(--color-black);
  --color-text-muted: var(--color-gray-500);
  --color-text-muted-dark: rgba(255, 255, 255, 0.5);
  --color-border-dark: var(--color-gray-800);
  --color-bg-hero: var(--color-accent);
  --color-bg-dark: var(--color-black);
  --color-bg-shop: var(--color-surface);
  --font-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --text-xs: 0.625rem;
  --text-sm: 0.6875rem;
  --text-base: 0.75rem;
  --text-md: 0.875rem;
  --text-lg: 1rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.5rem;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-bold: 700;
  --weight-black: 900;
  --tracking-tight: -0.02em;
  --tracking-normal: 0em;
  --tracking-wide: 0.05em;
  --tracking-wider: 0.1em;
  --tracking-widest: 0.2em;
  --leading-none: 1;
  --leading-tight: 1.1;
  --leading-snug: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.6;
  --leading-loose: 1.75;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --max-width: 1600px;
  --max-width-content: 1300px;
  --max-width-narrow: 760px;
  --page-gutter: var(--space-10);
  --dur-fast: 0.15s;
  --dur-base: 0.3s;
  --dur-page: 0.35s;
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
  --border-width: 3px;
  --global-border-radius: 1px;
}

@media (max-width: 768px) {
  :root {
    --page-gutter: var(--space-6);
  }
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-y: scroll;
  scrollbar-gutter: stable;
  min-width: 320px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-black) transparent;
}
html.is-menu-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--color-black);
}

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

body {
  font-family: var(--font-sans);
  font-size: var(--text-md);
  font-weight: var(--weight-regular);
  line-height: var(--leading-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-kerning: normal;
          font-kerning: normal;
  -webkit-font-feature-settings: "kern";
          font-feature-settings: "kern";
  -webkit-font-variant-ligatures: common-ligatures;
          font-variant-ligatures: common-ligatures;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
  min-height: 100svh;
  opacity: 0;
  -webkit-transition: opacity var(--dur-page) var(--ease-out);
  transition: opacity var(--dur-page) var(--ease-out);
}
body.is-loaded {
  opacity: 1;
}
body.is-menu-open {
  overflow: hidden;
  position: fixed;
  inset: 0;
  width: 100%;
}

a {
  color: inherit;
}

svg[width][height] {
  max-width: revert;
}

img,
picture,
svg,
video,
canvas,
embed,
iframe,
object,
audio {
  display: block;
  max-width: 100%;
  height: auto;
}

p,
h1, h2, h3, h4, h5, h6,
li,
blockquote,
figcaption {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
}

th {
  font-weight: inherit;
}

fieldset {
  border: none;
  padding: 0;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

pre,
code,
kbd,
samp {
  font-family: monospace;
  font-size: inherit;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input,
textarea,
select,
button {
  font: inherit;
}

button,
textarea,
select,
input[type=text],
input[type=number],
input[type=email],
input[type=password],
input[type=search],
input[type=date],
input[type=datetime-local],
input[type=url],
input[type=tel] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

[hidden] {
  display: none !important;
}

.wp-caption,
.gallery-caption {
  display: none;
}

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

:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 3px;
}

@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fade-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fade-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fade-down {
  from {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fade-down {
  from {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes slide-left {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slide-left {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes countdown-tick {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }
}
@keyframes countdown-tick {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }
}
:root {
  --header-height: 100px;
  --header-height-min: 60px;
  --header-height-current: var(--header-height);
  --header-scroll-start: 300px;
  --header-scroll-distance: 360px;
  --header-scroll-enabled: 1;
  --header-shadow-none: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  --header-shadow-elevated: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
  --header-shadow-current: var(--header-shadow-none);
  --header-logo-height: 24px;
  --header-logo-height-min: 16px;
  --header-logo-height-current: var(--header-logo-height);
  --header-logo-scale-current: 1;
  --header-padding-x: var(--space-10);
  --header-mobile-padding-x: var(--page-gutter);
  --header-z: 100;
  --mobile-menu-z: 90;
  --header-nav-gap: var(--space-10);
  --header-nav-logo-gap: 8rem;
  --menu-icon-size: 20px;
  --menu-icon-line-height: 2px;
  --menu-icon-gap: 3px;
  --menu-toggle-hit-size: calc(var(--menu-icon-size) + (var(--space-2) * 2));
  --menu-toggle-side-padding: var(--space-2);
  --header-mobile-side-slot: var(--menu-toggle-hit-size);
  --menu-item-size: clamp(2.25rem, 8vw, 3.75rem);
  --social-icon-size: clamp(18px, 2.5vw, 24px);
  --social-gap: var(--space-2);
  --social-color: var(--color-text);
}

.site {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}
.site .header-spacer {
  height: var(--header-height);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.site .site-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: var(--color-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.site .site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-height-current, var(--header-height));
  z-index: var(--header-z);
  background-color: var(--color-bg);
  -webkit-box-shadow: var(--header-shadow-current);
          box-shadow: var(--header-shadow-current);
  -webkit-transition: background-color var(--dur-base) var(--ease-out), -webkit-box-shadow var(--dur-base) var(--ease-out);
  transition: background-color var(--dur-base) var(--ease-out), -webkit-box-shadow var(--dur-base) var(--ease-out);
  transition: box-shadow var(--dur-base) var(--ease-out), background-color var(--dur-base) var(--ease-out);
  transition: box-shadow var(--dur-base) var(--ease-out), background-color var(--dur-base) var(--ease-out), -webkit-box-shadow var(--dur-base) var(--ease-out);
}
.site .site-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--header-padding-x);
}
.site .site-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  gap: var(--header-nav-gap);
}
.site .site-header__group {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 0;
}
.site .site-header__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 0;
}
.site .site-header__group--left .site-header__item {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.site .site-header__group--right .site-header__item {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
}
.site .site-header__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: var(--header-nav-logo-gap);
  overflow: visible;
  text-decoration: none;
  color: var(--color-text);
  padding: 0 var(--space-6);
  border-radius: 4px;
}
.site .site-header__logo svg,
.site .site-header__logo img {
  height: var(--header-logo-height-current, var(--header-logo-height));
  width: auto;
  max-width: none;
  display: block;
  -webkit-transition: height var(--dur-fast) linear, -webkit-filter var(--dur-fast) linear;
  transition: height var(--dur-fast) linear, -webkit-filter var(--dur-fast) linear;
  transition: height var(--dur-fast) linear, filter var(--dur-fast) linear;
  transition: height var(--dur-fast) linear, filter var(--dur-fast) linear, -webkit-filter var(--dur-fast) linear;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.site .site-header__wordmark {
  display: block;
  font-size: var(--header-logo-height-current, var(--header-logo-height));
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  -webkit-transition: font-size var(--dur-fast) linear;
  transition: font-size var(--dur-fast) linear;
}
.site .site-header__link {
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--global-border-radius);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: var(--color-text);
  white-space: nowrap;
  padding: 2px 6px;
  line-height: 1;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.site .site-header__link:hover, .site .site-header__link[aria-current=page] {
  text-decoration: underline;
}
.site .mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: var(--mobile-menu-z);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-top: var(--header-height);
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
}
.site .mobile-menu.is-open {
  visibility: visible;
  pointer-events: all;
}
.site .mobile-menu.is-closing {
  pointer-events: none;
}
.site .mobile-menu__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: var(--space-4) var(--page-gutter) var(--space-6);
  gap: var(--space-10);
  opacity: 0;
  -webkit-transition: opacity 220ms var(--ease-out);
  transition: opacity 220ms var(--ease-out);
}
.site .mobile-menu.is-open .mobile-menu__inner {
  opacity: 1;
}
.site .mobile-menu__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
.site .mobile-menu__link {
  font-size: var(--menu-item-size);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--global-border-radius);
  text-decoration: none;
  color: var(--color-text);
  padding: 0;
  border-radius: 4px;
  min-width: 44px;
  min-height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-timing-function: var(--ease-out);
          transition-timing-function: var(--ease-out);
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.site .mobile-menu__link.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.site .mobile-menu__link:hover {
  opacity: 0.4;
}
.site .mobile-menu__link[aria-current=page] {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.site .mobile-menu__footer {
  margin-top: auto;
  width: 100%;
}
.site .mobile-menu__footer .social-links {
  width: min(100%, 26rem);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(var(--space-2), 3vw, var(--space-4));
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.site .mobile-menu__footer .social-links li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
}
.site .mobile-menu__footer .social-links__item {
  width: 100%;
  min-width: 0;
  min-height: clamp(48px, 11vw, 60px);
  opacity: 0;
  -webkit-transform: translateY(16px);
          transform: translateY(16px);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-timing-function: var(--ease-out);
          transition-timing-function: var(--ease-out);
}
.site .mobile-menu__footer .social-links__item svg {
  width: clamp(22px, 5vw, 30px);
  height: clamp(22px, 5vw, 30px);
}
.site .mobile-menu__footer .social-links__item.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.site .site-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: var(--space-6);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--page-gutter);
}
@media (max-width: 768px) {
  .site .site-footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: var(--space-4);
  }
}
.site .site-footer__legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  min-width: 0;
  text-align: right;
  gap: 2px;
}
@media (max-width: 768px) {
  .site .site-footer__legal {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
  }
}
.site .site-footer__copyright {
  font-size: var(--text-sm);
  font-weight: var(--weight-regular);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--global-border-radius);
  color: var(--color-text-muted);
  white-space: normal;
  line-height: 1.2;
}
.site .site-footer__terms {
  margin-top: 1px;
}
.site .site-footer__terms-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site .site-footer__terms-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site .site-footer__terms-list li + li::before {
  content: "|";
  padding: 0 var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.site .site-footer__terms-list li a {
  font-size: var(--text-sm);
  font-weight: var(--weight-regular);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--global-border-radius);
  color: var(--color-text-muted);
  text-decoration: none;
  -webkit-transition: color var(--dur-fast) var(--ease-out);
  transition: color var(--dur-fast) var(--ease-out);
}
.site .site-footer__terms-list li a:hover {
  color: var(--color-accent);
}
.site .site-footer__terms-list li a {
  white-space: nowrap;
  padding: 0 var(--space-1);
  line-height: 1;
  border-radius: var(--global-border-radius);
}
.site .site-footer__social {
  width: 100%;
}
@media (min-width: 768px) {
  .site .site-footer__social {
    -ms-flex-item-align: start;
        align-self: flex-start;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
}
.site .site-footer__social .social-links {
  --social-icon-size: clamp(20px, 1.8vw, 28px);
  --social-gap: clamp(var(--space-3), 1.2vw, var(--space-5));
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.site .site-footer__social .social-links__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  min-height: 36px;
}

.menu-toggle {
  display: none;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: var(--menu-toggle-hit-size);
  height: var(--menu-toggle-hit-size);
  min-width: var(--menu-toggle-hit-size);
  min-height: var(--menu-toggle-hit-size);
  background: none;
  border: none;
  padding: var(--space-2);
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 4px;
  z-index: calc(var(--header-z) + 1);
  -webkit-transition: background var(--dur-fast) var(--ease-out);
  transition: background var(--dur-fast) var(--ease-out);
}
.menu-toggle__bar {
  position: absolute;
  left: var(--menu-toggle-side-padding);
  width: var(--menu-icon-size);
  height: var(--menu-icon-line-height);
  background: var(--color-text);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: opacity var(--dur-base) var(--ease-in-out), width var(--dur-base) var(--ease-in-out), -webkit-transform var(--dur-base) var(--ease-in-out);
  transition: opacity var(--dur-base) var(--ease-in-out), width var(--dur-base) var(--ease-in-out), -webkit-transform var(--dur-base) var(--ease-in-out);
  transition: transform var(--dur-base) var(--ease-in-out), opacity var(--dur-base) var(--ease-in-out), width var(--dur-base) var(--ease-in-out);
  transition: transform var(--dur-base) var(--ease-in-out), opacity var(--dur-base) var(--ease-in-out), width var(--dur-base) var(--ease-in-out), -webkit-transform var(--dur-base) var(--ease-in-out);
}
.menu-toggle__bar--top {
  top: calc(50% - var(--menu-icon-line-height) / 2 - var(--menu-icon-gap) - var(--menu-icon-line-height));
}
.menu-toggle__bar--mid {
  top: calc(50% - var(--menu-icon-line-height) / 2);
}
.menu-toggle__bar--bot {
  top: calc(50% - var(--menu-icon-line-height) / 2 + var(--menu-icon-gap) + var(--menu-icon-line-height));
}

.is-menu-open {
  overflow: hidden;
}
.is-menu-open .menu-toggle__bar--top {
  -webkit-transform: translateY(calc(var(--menu-icon-gap) + var(--menu-icon-line-height))) rotate(45deg);
          transform: translateY(calc(var(--menu-icon-gap) + var(--menu-icon-line-height))) rotate(45deg);
}
.is-menu-open .menu-toggle__bar--mid {
  opacity: 0;
  width: 0;
}
.is-menu-open .menu-toggle__bar--bot {
  -webkit-transform: translateY(calc(-1 * (var(--menu-icon-gap) + var(--menu-icon-line-height)))) rotate(-45deg);
          transform: translateY(calc(-1 * (var(--menu-icon-gap) + var(--menu-icon-line-height)))) rotate(-45deg);
}

.social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: var(--social-gap);
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  list-style: none;
  padding: 0;
  margin: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.social-links__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 0;
  min-height: 32px;
  color: var(--social-color);
  text-decoration: none;
  border-radius: 4px;
  -webkit-transition: color var(--dur-fast) var(--ease-out);
  transition: color var(--dur-fast) var(--ease-out);
}
.social-links__item:hover {
  color: var(--color-accent);
}
.social-links__item svg {
  width: var(--social-icon-size);
  height: var(--social-icon-size);
  display: block;
}

@media (max-width: 1024px) {
  :root {
    --header-height: var(--header-height-min);
    --header-height-current: var(--header-height-min);
    --header-scroll-enabled: 0;
    --header-logo-height: var(--header-logo-height-min);
    --header-logo-height-current: var(--header-logo-height-min);
    --header-logo-scale-current: 1;
  }
  .site .site-header__inner {
    display: grid;
    grid-template-columns: var(--header-mobile-side-slot) minmax(0, 1fr) var(--header-mobile-side-slot);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: var(--space-2);
       -moz-column-gap: var(--space-2);
            column-gap: var(--space-2);
    padding: 0 calc(var(--header-mobile-padding-x) - var(--menu-toggle-side-padding));
  }
  .site .site-header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-column: 2;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0;
    min-width: 0;
  }
  .site .site-header__group {
    display: none;
  }
  .site .site-header__logo {
    margin: 0 auto;
    padding: 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
  }
  .site .site-header__logo svg,
  .site .site-header__logo img {
    width: auto;
    max-width: 100%;
  }
  .menu-toggle {
    position: relative;
    left: auto;
    grid-column: 1;
    justify-self: start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .site .mobile-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: var(--color-black);
  }
  .site .mobile-menu__link {
    color: var(--color-white);
  }
  .site .mobile-menu__footer .social-links {
    max-width: min(100%, 24rem);
  }
  .site .mobile-menu__footer .social-links__item {
    color: var(--color-white);
  }
  .is-menu-open .site .site-header {
    background-color: var(--color-black);
  }
  .is-menu-open .site .site-header__logo, .is-menu-open .site .site-header__wordmark {
    color: var(--color-white);
  }
  .is-menu-open .site .site-header__logo svg,
  .is-menu-open .site .site-header__logo img {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
  .is-menu-open .menu-toggle__bar {
    background: var(--color-white);
  }
}
@media (max-width: 1024px) and (max-width: 768px) {
  .site-footer__copyright {
    white-space: normal;
  }
  .site-footer__copyright, .site-footer__terms, .site-footer__legal {
    text-align: center;
    width: 100%;
  }
  .site-footer__social {
    width: 100%;
  }
  .site-footer__social .social-links {
    width: min(100%, 24rem);
    max-width: 100%;
    margin: 0 auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: clamp(var(--space-2), 3vw, var(--space-4));
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .site-footer__social .social-links li {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    min-width: 0;
  }
  .site-footer__social .social-links__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    width: 100%;
    min-width: 0;
    min-height: clamp(48px, 11vw, 60px);
  }
  .site-footer__social .social-links__item svg {
    width: clamp(22px, 5vw, 30px);
    height: clamp(22px, 5vw, 30px);
  }
  .site-footer__terms-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 0;
  }
  .site-footer__terms-list li + li::before {
    content: unset;
  }
}
:root {
  --btn-padding-x: var(--space-8);
  --btn-padding-y: var(--space-2);
  --btn-font-size: var(--text-sm);
  --btn-weight: var(--weight-bold);
  --btn-tracking: var(--tracking-widest);
  --btn-radius: var(--global-border-radius);
  --btn-border-w: var(--border-width);
  --btn-bg: var(--color-black);
  --btn-color: var(--color-white);
  --btn-border-color: var(--color-black);
  --btn-hover-bg: var(--color-white);
  --btn-hover-color: var(--color-black);
  --btn-hover-border: var(--color-black);
  --btn-ghost-bg: transparent;
  --btn-ghost-color: var(--color-black);
  --btn-ghost-border-color: var(--color-black);
  --btn-ghost-hover-bg: var(--color-black);
  --btn-ghost-hover-color: var(--color-white);
  --btn-ghost-hover-border: var(--color-black);
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: var(--space-2);
  padding: var(--btn-padding-y) var(--btn-padding-x);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-weight);
  letter-spacing: var(--btn-tracking);
  text-transform: uppercase;
  border-radius: var(--global-border-radius);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border-radius: var(--btn-radius);
  border: var(--btn-border-w) solid var(--btn-border-color);
  background: var(--btn-bg);
  color: var(--btn-color);
  -webkit-transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.btn:hover {
  background: var(--btn-hover-bg);
  color: var(--btn-hover-color);
  border-color: var(--btn-hover-border);
}
.btn:focus-visible {
  background: var(--btn-hover-bg);
  color: var(--btn-hover-color);
  border-color: var(--btn-hover-border);
  outline: 2px solid var(--color-text);
  outline-offset: 2px;
}
.btn:focus:not(:focus-visible) {
  outline: none;
}
.btn--ghost {
  background: var(--btn-ghost-bg);
  color: var(--btn-ghost-color);
  border-color: var(--btn-ghost-border-color);
}
.btn--ghost:hover {
  background: var(--btn-ghost-hover-bg);
  color: var(--btn-ghost-hover-color);
  border-color: var(--btn-ghost-hover-border);
}
.btn--ghost:focus-visible {
  background: var(--btn-ghost-hover-bg);
  color: var(--btn-ghost-hover-color);
  border-color: var(--btn-ghost-hover-border);
  outline: 2px solid var(--color-text);
  outline-offset: 2px;
}
.btn--sm {
  --btn-padding-x: var(--space-5);
  --btn-padding-y: var(--space-2);
  --btn-font-size: var(--text-xs);
}
.btn--lg {
  --btn-padding-x: var(--space-10);
  --btn-padding-y: var(--space-4);
  --btn-font-size: var(--text-base);
}
.btn--disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.page-template-page-home-php {
  --home-section-max-width: 1024px;
  --home-section-padding-block: var(--space-10);
  --home-content-padding-inline: max(var(--page-gutter), calc((100% - var(--home-section-max-width)) / 2));
  --home-section-label-size: var(--text-2xl);
  --home-countdown-num: 2.25rem;
  --home-section-header-gap: var(--space-4);
  --home-media-max-width: var(--home-section-max-width);
  --home-hero-figure-height: 90%;
  --home-shop-gap: var(--space-8);
  --home-shop-columns-desktop: 3;
  --home-shop-columns-mobile: 1;
  --home-section-surface-bg: var(--color-white);
  --home-section-surface-fg: var(--color-black);
  --home-section-surface-muted: var(--color-text-muted);
  --home-section-surface-border: rgba(0, 0, 0, 0.14);
}
.page-template-page-home-php .site-main {
  display: block;
}
.page-template-page-home-php .home {
  background: var(--color-white);
  color: var(--color-black);
}
.page-template-page-home-php .home__album-title {
  font-size: var(--home-section-label-size);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--global-border-radius);
}
.page-template-page-home-php .home__mv-label, .page-template-page-home-php .home__shop-label {
  font-size: var(--text-3xl);
  font-weight: var(--weight-black);
  letter-spacing: var(--tracking-normal);
  line-height: var(--leading-tight);
  margin: 0;
  line-height: 0.95;
  text-wrap: balance;
}
.page-template-page-home-php .home__album-title-logo {
  display: block;
  width: auto;
  height: 0.8em;
  max-width: 100%;
}
.page-template-page-home-php .home__album-subtitle, .page-template-page-home-php .home__mv-badge {
  font-size: var(--home-section-label-size);
  font-weight: var(--weight-regular);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--global-border-radius);
  line-height: var(--leading-snug);
}
.page-template-page-home-php .home__album-subtitle {
  color: var(--color-white);
}
.page-template-page-home-php .home__mv-header, .page-template-page-home-php .home__shop-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: var(--home-section-header-gap);
  padding-inline: var(--home-content-padding-inline);
  margin-bottom: calc(var(--home-section-padding-block) - var(--home-header-stack-gap, 0px));
}
.page-template-page-home-php .home__mv-badge {
  color: var(--home-section-surface-muted);
  white-space: nowrap;
}
.page-template-page-home-php .home__section-surface {
  background: var(--home-section-surface-bg);
  color: var(--home-section-surface-fg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.page-template-page-home-php .home__section-surface.home__section-surface--black {
  --home-section-surface-bg: var(--color-black);
  --home-section-surface-fg: var(--color-white);
  --home-section-surface-muted: var(--color-text-muted-dark);
  --home-section-surface-border: rgba(255, 255, 255, 0.16);
  --btn-bg: var(--color-white);
  --btn-color: var(--color-black);
  --btn-border-color: var(--color-white);
  --btn-hover-bg: transparent;
  --btn-hover-color: var(--color-white);
  --btn-hover-border: var(--color-white);
}
.page-template-page-home-php .home__section-surface.home__section-surface--black + .home__section-surface--black {
  border-top: var(--border-width) solid var(--home-section-surface-border);
}
.page-template-page-home-php .home__section-surface.home__section-surface--white {
  --home-section-surface-bg: var(--color-white);
  --home-section-surface-fg: var(--color-black);
  --home-section-surface-muted: var(--color-text-muted);
  --home-section-surface-border: rgba(0, 0, 0, 0.14);
}
.page-template-page-home-php .home__section-surface.home__section-surface--dark-gray {
  --home-section-surface-bg: var(--color-gray-800);
  --home-section-surface-fg: var(--color-white);
  --home-section-surface-muted: var(--color-text-muted-dark);
  --home-section-surface-border: rgba(255, 255, 255, 0.16);
  --btn-bg: var(--color-white);
  --btn-color: var(--color-black);
  --btn-border-color: var(--color-white);
  --btn-hover-bg: transparent;
  --btn-hover-color: var(--color-white);
  --btn-hover-border: var(--color-white);
}
.page-template-page-home-php .home__section-surface.home__section-surface--accent-blue {
  --home-section-surface-bg: var(--color-accent);
  --home-section-surface-fg: var(--color-white);
  --home-section-surface-muted: rgba(255, 255, 255, 0.72);
  --home-section-surface-border: rgba(255, 255, 255, 0.2);
  --btn-bg: var(--color-white);
  --btn-color: var(--color-black);
  --btn-border-color: var(--color-white);
  --btn-hover-bg: transparent;
  --btn-hover-color: var(--color-white);
  --btn-hover-border: var(--color-white);
}
.page-template-page-home-php .home__hero, .page-template-page-home-php .home__music-videos, .page-template-page-home-php .home__shop {
  position: relative;
  padding-block: var(--home-section-padding-block);
}
.page-template-page-home-php .home__hero {
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  overflow: hidden;
  background: var(--color-bg-hero);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  color: var(--color-white);
  --btn-bg: var(--color-white);
  --btn-color: var(--color-black);
  --btn-border-color: var(--color-white);
  --btn-hover-bg: transparent;
  --btn-hover-color: var(--color-white);
  --btn-hover-border: var(--color-white);
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
.page-template-page-home-php .home__hero > .home__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-template-page-home-php .home__hero > .home__video-bg video,
.page-template-page-home-php .home__hero > .home__video-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  -o-object-position: bottom center;
     object-position: bottom center;
}
.page-template-page-home-php .home__hero > .home__video-bg img {
  z-index: 0;
}
.page-template-page-home-php .home__hero > .home__video-bg video {
  z-index: 1;
}
.page-template-page-home-php .home__hero > .home__hero-stage {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
}
.page-template-page-home-php .home__hero > .home__hero-stage > .home__hero-figure {
  position: relative;
  height: var(--home-hero-figure-height);
  max-width: min(100%, var(--home-section-max-width));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: auto;
}
.page-template-page-home-php .home__hero > .home__hero-stage > .home__hero-figure > .home__hero-foreground {
  height: 100%;
  width: auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom center;
     object-position: bottom center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.page-template-page-home-php .home__hero > .home__hero-stage > .home__hero-figure > .home__hero-guard {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
  pointer-events: auto;
}
.page-template-page-home-php .home__hero > .home__hero-content {
  position: relative;
  z-index: 3;
  isolation: isolate;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding-inline: var(--home-content-padding-inline);
}
.page-template-page-home-php .home__hero > .home__hero-content > .home-countdown {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: var(--space-4);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
}
.page-template-page-home-php .home__hero > .home__hero-content > .home-countdown > .home-countdown__unit {
  --countdown-exit-delay: 0ms;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.75s var(--ease-out), -webkit-transform 0.75s var(--ease-out), -webkit-filter 0.9s var(--ease-out);
  transition: opacity 0.75s var(--ease-out), -webkit-transform 0.75s var(--ease-out), -webkit-filter 0.9s var(--ease-out);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out), filter 0.9s var(--ease-out);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out), filter 0.9s var(--ease-out), -webkit-transform 0.75s var(--ease-out), -webkit-filter 0.9s var(--ease-out);
  -webkit-transition-delay: var(--countdown-exit-delay);
          transition-delay: var(--countdown-exit-delay);
}
.page-template-page-home-php .home__hero > .home__hero-content > .home-countdown > .home-countdown__unit > .home-countdown__number {
  font-size: var(--home-countdown-num);
  font-weight: var(--weight-bold);
  line-height: var(--leading-none);
  letter-spacing: var(--tracking-tight);
  font-variant-numeric: tabular-nums;
  text-align: center;
}
.page-template-page-home-php .home__hero > .home__hero-content > .home-countdown > .home-countdown__unit > .home-countdown__label {
  font-size: var(--text-sm);
  font-weight: var(--weight-regular);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--global-border-radius);
  letter-spacing: var(--tracking-normal);
  margin-top: var(--space-1);
  white-space: nowrap;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}
.page-template-page-home-php .home__hero > .home__hero-content > .home-countdown.is-completing > .home-countdown__unit {
  opacity: 0;
}
.page-template-page-home-php .home__hero > .home__hero-content > .home-countdown.is-release-visible {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-template-page-home-php .home__hero > .home__hero-content > .home-countdown > .home-countdown__release {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--global-border-radius);
  background-color: var(--color-white);
  color: var(--color-black);
  white-space: nowrap;
  padding: 2px 6px;
  line-height: var(--leading-snug);
  text-align: center;
  -webkit-animation: fade-in 2.4s var(--ease-out) forwards;
          animation: fade-in 2.4s var(--ease-out) forwards;
}
.page-template-page-home-php .home__hero > .home__hero-content > .home__hero-bar {
  position: relative;
  z-index: 3;
  margin-top: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--space-6);
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.page-template-page-home-php .home__hero > .home__hero-content > .home__hero-bar > .home__album-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  margin: 0;
}
.page-template-page-home-php .home__hero > .home__hero-content > .home__hero-bar > .home__album-subtitle {
  color: var(--color-white);
  margin: 0;
  white-space: pre-line;
}
.page-template-page-home-php .home__hero > .home__hero-content > .home__hero-bar > .btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: var(--space-4) var(--space-8);
}
.page-template-page-home-php .home__music-videos {
  min-height: calc(100vh - var(--header-height-min));
  min-height: calc(100dvh - var(--header-height-min));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--space-12);
}
.page-template-page-home-php .home__music-videos > .home__mv {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: var(--space-4);
}
.page-template-page-home-php .home__music-videos > .home__mv + .home__mv {
  padding-top: var(--space-12);
  border-top: var(--border-width) solid var(--home-section-surface-border);
}
.page-template-page-home-php .home__music-videos > .home__mv > .home__mv-header {
  --home-header-stack-gap: var(--space-4);
}
.page-template-page-home-php .home__music-videos > .home__mv > .home__mv-header > .home__mv-label {
  margin: 0;
}
.page-template-page-home-php .home__music-videos > .home__mv > .home__mv-thumb-link {
  display: block;
  position: relative;
  width: 100%;
  max-width: var(--home-media-max-width);
  margin-inline: auto;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.page-template-page-home-php .home__music-videos > .home__mv > .home__mv-thumb-link:hover .home__mv-play {
  opacity: 1;
}
.page-template-page-home-php .home__music-videos > .home__mv > .home__mv-thumb-link > .home__mv-thumb {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page-template-page-home-php .home__music-videos > .home__mv > .home__mv-thumb-link > .home__mv-play {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--color-black-30);
  opacity: 0;
  -webkit-transition: opacity var(--dur-base) var(--ease-out);
  transition: opacity var(--dur-base) var(--ease-out);
  color: inherit;
}
.page-template-page-home-php .home__music-videos > .home__mv > .home__mv-thumb-link > .home__mv-play svg {
  width: 64px;
  height: 64px;
}
.page-template-page-home-php .home__music-videos > .home__mv > .home__mv-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: var(--space-4);
  margin-top: var(--space-4);
  padding-inline: var(--home-content-padding-inline);
}
.page-template-page-home-php .home__music-videos > .home__mv > .home__mv-footer > .home__mv-stream-label {
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--global-border-radius);
  color: inherit;
}
.page-template-page-home-php .home__music-videos > .home__mv > .home__mv-footer > .home__mv-stream-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--space-4);
}
.page-template-page-home-php .home__music-videos > .home__mv > .home__mv-footer > .home__mv-stream-links a {
  color: inherit;
  -webkit-transition: opacity var(--dur-fast) var(--ease-out);
  transition: opacity var(--dur-fast) var(--ease-out);
}
.page-template-page-home-php .home__music-videos > .home__mv > .home__mv-footer > .home__mv-stream-links a:hover {
  opacity: 0.5;
}
.page-template-page-home-php .home__music-videos > .home__mv > .home__mv-footer > .home__mv-stream-links a svg {
  display: block;
  width: 18px;
  height: 18px;
}
.page-template-page-home-php .home__shop {
  min-height: calc(100vh - var(--header-height-min));
  min-height: calc(100dvh - var(--header-height-min));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--space-8);
}
.page-template-page-home-php .home__shop > .home__shop-header {
  --home-header-stack-gap: var(--space-8);
}
.page-template-page-home-php .home__shop > .home__shop-header > .home__shop-label {
  margin: 0;
}
.page-template-page-home-php .home__shop > .home__shop-header > .btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.page-template-page-home-php .home__shop > .home__shop-grid {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: var(--home-shop-gap);
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-inline: var(--home-content-padding-inline);
}
.page-template-page-home-php .home__shop > .home__shop-grid > .home__shop-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - var(--home-shop-gap) * (var(--home-shop-columns-desktop) - 1)) / var(--home-shop-columns-desktop));
          flex: 0 0 calc((100% - var(--home-shop-gap) * (var(--home-shop-columns-desktop) - 1)) / var(--home-shop-columns-desktop));
  max-width: calc((100% - var(--home-shop-gap) * (var(--home-shop-columns-desktop) - 1)) / var(--home-shop-columns-desktop));
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--space-3);
  padding-bottom: var(--space-2);
  color: inherit;
  text-align: center;
  text-decoration: none;
}
.page-template-page-home-php .home__shop > .home__shop-grid > .home__shop-item:hover > .btn, .page-template-page-home-php .home__shop > .home__shop-grid > .home__shop-item:focus-visible > .btn, .page-template-page-home-php .home__shop > .home__shop-grid > .home__shop-item:focus-within > .btn {
  background: var(--btn-hover-bg);
  color: var(--btn-hover-color);
  border-color: var(--btn-hover-border);
}
.page-template-page-home-php .home__shop > .home__shop-grid > .home__shop-item:hover > .home__shop-img-wrap > .home__shop-img, .page-template-page-home-php .home__shop > .home__shop-grid > .home__shop-item:focus-visible > .home__shop-img-wrap > .home__shop-img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.page-template-page-home-php .home__shop > .home__shop-grid > .home__shop-item > .home__shop-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
.page-template-page-home-php .home__shop > .home__shop-grid > .home__shop-item > .home__shop-img-wrap > .home__shop-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  -webkit-transition: -webkit-transform var(--dur-base) var(--ease-out);
  transition: -webkit-transform var(--dur-base) var(--ease-out);
  transition: transform var(--dur-base) var(--ease-out);
  transition: transform var(--dur-base) var(--ease-out), -webkit-transform var(--dur-base) var(--ease-out);
}
.page-template-page-home-php .home__shop > .home__shop-grid > .home__shop-item > .home__shop-copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--space-1);
}
.page-template-page-home-php .home__shop > .home__shop-grid > .home__shop-item > .home__shop-copy > .home__shop-title {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-normal);
  text-transform: uppercase;
  border-radius: var(--global-border-radius);
  line-height: 1.1;
}
.page-template-page-home-php .home__shop > .home__shop-grid > .home__shop-item > .home__shop-copy > .home__shop-subtitle {
  font-size: var(--text-sm);
  font-weight: var(--weight-regular);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--global-border-radius);
  color: var(--home-section-surface-muted);
  line-height: 1.15;
}
.page-template-page-home-php .home__shop > .home__shop-grid > .home__shop-item > .btn {
  margin-top: auto;
}

@media (max-width: 768px) {
  .page-template-page-home-php {
    --home-section-padding-block: var(--space-8);
    --home-content-padding-inline: var(--page-gutter);
    --home-section-header-gap:0;
    --home-shop-gap: var(--space-6);
    --home-media-max-width: 100%;
  }
  .page-template-page-home-php .home__hero > .home__hero-content > .home__hero-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: var(--space-4);
  }
  .page-template-page-home-php .home__hero > .home__hero-content > .home__hero-bar > .home__album-title {
    justify-self: start;
    text-align: left;
  }
  .page-template-page-home-php .home__hero > .home__hero-content > .home__hero-bar > .home__album-subtitle {
    justify-self: end;
    text-align: right;
  }
  .page-template-page-home-php .home__hero > .home__hero-content > .home__hero-bar > .btn {
    grid-column: 1/-1;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .page-template-page-home-php .home__music-videos > .home__mv > .home__mv-header,
  .page-template-page-home-php .home__music-videos > .home__mv > .home__mv-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .page-template-page-home-php .home__music-videos > .home__mv > .home__mv-header > .home__mv-badge {
    text-align: left;
  }
  .page-template-page-home-php .home__music-videos > .home__mv > .home__mv-thumb-link > .home__mv-play {
    opacity: 1;
  }
  .page-template-page-home-php .home__shop > .home__shop-header {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .page-template-page-home-php .home__shop > .home__shop-header > .btn {
    width: auto;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .page-template-page-home-php .home__shop > .home__shop-grid > .home__shop-item {
    -ms-flex-preferred-size: calc((100% - var(--home-shop-gap) * (var(--home-shop-columns-mobile) - 1)) / var(--home-shop-columns-mobile));
        flex-basis: calc((100% - var(--home-shop-gap) * (var(--home-shop-columns-mobile) - 1)) / var(--home-shop-columns-mobile));
    max-width: calc((100% - var(--home-shop-gap) * (var(--home-shop-columns-mobile) - 1)) / var(--home-shop-columns-mobile));
  }
}
html.is-page-fading .site {
  opacity: 0;
  -webkit-transition: opacity 0.65s var(--ease-out);
  transition: opacity 0.65s var(--ease-out);
}

.page-content {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: var(--page-gutter);
}

.empty-state {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: var(--space-12) var(--page-gutter);
}
.empty-state__label {
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--global-border-radius);
  background-color: var(--color-black);
  color: var(--color-white);
  white-space: nowrap;
  padding: 2px 6px;
  display: inline;
}

.page-template-page-live-php .site-content,
.page-template-page-live-php .site-main {
  background: var(--color-black);
}

.live-page {
  --btn-bg: var(--color-white);
  --btn-color: var(--color-black);
  --btn-border-color: var(--color-white);
  --btn-hover-bg: transparent;
  --btn-hover-color: var(--color-white);
  --btn-hover-border: var(--color-white);
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  background: var(--color-black);
  color: var(--color-white);
}
.live-page .btn--ghost {
  --btn-ghost-bg: transparent;
  --btn-ghost-color: var(--color-white);
  --btn-ghost-border-color: var(--color-white);
  --btn-ghost-hover-bg: var(--color-white);
  --btn-ghost-hover-color: var(--color-black);
  --btn-ghost-hover-border: var(--color-white);
}
.live-page__inner {
  min-height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--space-8);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.live-page__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--space-4);
  padding-bottom: var(--space-6);
  border-bottom: var(--border-width) solid var(--color-white);
}
.live-page__title {
  font-size: var(--text-3xl);
  font-weight: var(--weight-black);
  letter-spacing: var(--tracking-normal);
  line-height: var(--leading-tight);
  margin: 0;
  text-transform: uppercase;
}
.live-page__list {
  width: 100%;
}
.live-page .show-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-column-gap: var(--space-6);
     -moz-column-gap: var(--space-6);
          column-gap: var(--space-6);
  padding: 0;
}
.live-page .show-row + .show-row {
  margin-top: var(--space-6);
  padding-top: var(--space-6);
}
.live-page .show-row__date, .live-page .show-row__title {
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
  line-height: 0.92;
  text-transform: uppercase;
}
.live-page .show-row__date {
  color: var(--color-white);
  justify-self: start;
}
.live-page .show-row__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--space-1);
  min-width: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-self: center;
  text-align: center;
}
.live-page .show-row__title {
  color: var(--color-white);
  margin: 0;
}
.live-page .show-row__city {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
  text-transform: uppercase;
  border-radius: var(--global-border-radius);
  color: var(--color-white);
  line-height: 1.1;
}
.live-page .show-row__venue {
  font-size: var(--text-sm);
  font-weight: var(--weight-regular);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--global-border-radius);
  color: var(--color-text-muted-dark);
  line-height: 1.15;
  margin-top: 0;
}
.live-page .show-row__actions {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  justify-self: end;
}
.live-page .show-row__actions .btn {
  --btn-padding-x: var(--space-6);
  --btn-padding-y: var(--space-3);
  --btn-font-size: var(--text-sm);
}
.live-page .show-row__soon {
  display: inline-block;
  line-height: 1.1;
  text-align: right;
}
.live-page .show-row--untitled .show-row__city {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
  color: var(--color-white);
  line-height: 0.96;
}
@media (max-width: 768px) {
  .live-page .show-row {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "date date" "info actions";
    row-gap: var(--space-4);
    -webkit-column-gap: var(--space-4);
       -moz-column-gap: var(--space-4);
            column-gap: var(--space-4);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .live-page .show-row__date {
    grid-area: date;
    font-size: var(--text-3xl);
  }
  .live-page .show-row__title {
    font-size: var(--text-xl);
  }
  .live-page .show-row__info {
    grid-area: info;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    justify-self: start;
    text-align: left;
  }
  .live-page .show-row__actions {
    grid-area: actions;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: var(--space-2);
  }
  .live-page .show-row__actions .btn {
    --btn-padding-x: var(--space-5);
    --btn-padding-y: var(--space-2);
    --btn-font-size: var(--text-xs);
  }
}
@media (max-width: 576px) {
  .live-page .show-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .live-page .show-row__actions .btn {
    min-width: 0;
  }
}

.live-page .empty-state__label {
  background-color: var(--color-white);
  color: var(--color-black);
}

:root {
  --music-viewport-height: calc(100vh - var(--header-height));
  --music-viewport-height: calc(100dvh - var(--header-height));
  --release-info-height: 100px;
  --release-track-block-pad: var(--space-6);
  --release-nav-offset: var(--space-12);
  --release-nav-height: 28px;
  --release-nav-gap: var(--space-4);
  --release-nav-space: calc(var(--release-nav-offset) + var(--release-nav-height) + var(--release-nav-gap));
  --release-card-width: auto;
  --release-card-max-width: min(calc(var(--music-viewport-height) - var(--release-info-height) - (var(--release-track-block-pad) * 2)), 65vw);
  --release-track-pad: 0px;
  --release-track-gap: var(--space-3);
  --release-icon-size: 20px;
}

.page-template-page-music-php .site-content {
  background: var(--color-black);
}
.page-template-page-music-php .site-main {
  min-height: var(--music-viewport-height);
}

.music-page {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: var(--music-viewport-height);
  height: var(--music-viewport-height);
  background: var(--color-black);
}
.music-page::before, .music-page::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  -webkit-transition: opacity var(--dur-base) var(--ease-out);
  transition: opacity var(--dur-base) var(--ease-out);
}
.music-page::before {
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(var(--color-black)), to(transparent));
  background: linear-gradient(to right, var(--color-black), transparent);
}
.music-page::after {
  right: 0;
  background: -webkit-gradient(linear, right top, left top, from(var(--color-black)), to(transparent));
  background: linear-gradient(to left, var(--color-black), transparent);
}
.music-page.has-scroll-left::before {
  opacity: 1;
}
.music-page.has-scroll-right::after {
  opacity: 1;
}
.music-page .release-nav__item,
.music-page .release-card {
  opacity: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-timing-function: var(--ease-out);
          transition-timing-function: var(--ease-out);
}
.music-page .release-nav__item.is-intro-visible,
.music-page .release-card.is-intro-visible {
  opacity: 1;
}
.music-page .release-nav__item {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}
.music-page .release-nav__item.is-intro-visible {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.music-page .release-card {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.music-page .release-card.is-intro-visible {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.music-page:hover .release-control:not(:disabled), .music-page:focus-within .release-control:not(:disabled) {
  opacity: 1;
  pointer-events: auto;
}
.music-page > .empty-state {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: var(--music-viewport-height);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.release-nav {
  position: absolute;
  top: var(--release-nav-offset);
  left: 0;
  right: 0;
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
  overflow: visible;
  -webkit-filter: drop-shadow(3px 3px 0px var(--color-black-14));
          filter: drop-shadow(3px 3px 0px var(--color-black-14));
}
.release-nav__list {
  list-style: none;
  padding: 0 var(--release-nav-pad-right, 0px) 0 var(--release-nav-pad-left, 0px);
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--space-2);
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  pointer-events: auto;
}
.release-nav__list::-webkit-scrollbar {
  display: none;
}
.release-nav__item {
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--global-border-radius);
  background: var(--color-black);
  color: var(--color-white);
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35em;
  white-space: nowrap;
  padding: 3px 8px;
  -webkit-transition: background-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
  transition: background-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; /* Standard syntax */
}
.release-nav__item.is-active {
  background: var(--color-white);
  color: var(--color-black);
}
@media (hover: hover) {
  .release-nav__item:not(.is-active):hover {
    background: var(--color-white);
    color: var(--color-black);
  }
}
.release-nav__name {
  font-weight: var(--weight-bold);
}
.release-nav__year {
  font-weight: var(--weight-regular);
  letter-spacing: var(--tracking-normal);
  -webkit-transition: color var(--dur-fast) var(--ease-out);
  transition: color var(--dur-fast) var(--ease-out);
}
.release-nav__item.is-active .release-nav__item__year {
  color: var(--color-text-muted);
}
@media (hover: hover) {
  .release-nav__item:not(.is-active):hover .release-nav__item__year {
    color: var(--color-text-muted);
  }
}

.release-controls {
  position: absolute;
  inset: 0;
  z-index: 11;
  pointer-events: none;
}

.release-control {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 64px;
  height: 64px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: color var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
  transition: color var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}
.release-control--prev {
  left: var(--space-4);
}
.release-control--next {
  right: var(--space-4);
}
.release-control:disabled {
  opacity: 0;
  cursor: default;
  pointer-events: none;
}
@media (hover: hover) {
  .release-control:not(:disabled):hover {
    opacity: 0.7;
  }
}
.release-control__icon {
  width: 34px;
  height: 34px;
  display: block;
}

.release-track {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  overflow-y: hidden;
  background: var(--color-black);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.release-track::-webkit-scrollbar {
  display: none;
}
.release-track img {
  -webkit-user-drag: none;
  pointer-events: none;
}
.release-track__rail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: var(--release-track-gap);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  height: 100%;
  padding: calc(var(--release-track-block-pad) + var(--release-nav-space)) 0 var(--release-track-block-pad);
  -webkit-transform: translate3d(calc(-1 * var(--release-track-x, 0px)), 0, 0);
          transform: translate3d(calc(-1 * var(--release-track-x, 0px)), 0, 0);
  will-change: transform;
}
.release-track__rail::before, .release-track__rail::after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0px;
          flex: 0 0 0;
}
.release-track__rail::before {
  -ms-flex-preferred-size: var(--release-track-pad-left, 0px);
      flex-basis: var(--release-track-pad-left, 0px);
}
.release-track__rail::after {
  -ms-flex-preferred-size: var(--release-track-pad-right, 0px);
      flex-basis: var(--release-track-pad-right, 0px);
}

.release-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: var(--release-card-media-width, -webkit-fit-content);
  width: var(--release-card-media-width, -moz-fit-content);
  width: var(--release-card-media-width, fit-content);
  max-width: min(100%, var(--release-card-max-width));
  height: 100%;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  scroll-snap-align: center;
  contain: paint;
}
.release-card__art {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: var(--release-card-media-width, -webkit-fit-content);
  width: var(--release-card-media-width, -moz-fit-content);
  width: var(--release-card-media-width, fit-content);
  overflow: hidden;
  background: var(--color-black);
}
@media (hover: hover) {
  .release-card__art {
    cursor: -webkit-grab;
    cursor: grab;
  }
}
.release-card__art img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  height: 100%;
  max-width: none;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.release-card__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 var(--release-info-height);
          flex: 0 0 var(--release-info-height);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: var(--release-card-media-width, 100%);
  max-width: 100%;
  background: var(--color-black);
  color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: var(--space-1);
  padding-right: var(--space-6);
}
.release-card__title-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--space-8);
  min-width: 0;
}
.release-card__year {
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--global-border-radius);
  line-height: 1.2;
  padding-bottom: 0.08em;
  color: var(--color-gray-600);
}
.release-card__title {
  font-size: var(--text-3xl);
  font-weight: var(--weight-black);
  letter-spacing: var(--tracking-normal);
  line-height: var(--leading-tight);
  margin: 0;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.release-card__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--space-5);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-height: var(--release-icon-size);
}
.release-card__links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--color-white);
  -webkit-transition: opacity var(--dur-fast) var(--ease-out);
  transition: opacity var(--dur-fast) var(--ease-out);
}
.release-card__links a:hover {
  opacity: 0.4;
}
.release-card__links a svg {
  width: var(--release-icon-size);
  height: var(--release-icon-size);
}
.release-card__links.is-empty {
  visibility: hidden;
}

.release-track.is-dragging .release-card__art {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

@media (max-width: 768px) {
  :root {
    --release-card-width: 75vw;
    --release-info-height: 132px;
    --release-track-block-pad: var(--space-8);
    --release-nav-offset: var(--space-5);
    --release-nav-gap: 0px;
    --release-nav-space: 0px;
    --release-track-pad: calc((100vw - var(--release-card-width)) / 2);
  }
  .music-page::before, .music-page::after {
    width: 80px;
  }
  .release-control {
    display: none;
  }
  .release-track {
    height: auto;
    overflow-x: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .release-track.is-programmatic {
    -ms-scroll-snap-type: none;
        scroll-snap-type: none;
  }
  .release-track__rail {
    min-height: 100%;
    height: 100%;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    margin-block: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transform: none !important;
            transform: none !important;
    will-change: auto;
  }
  .release-nav {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    z-index: 1;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding-top: var(--space-4);
    margin-bottom: var(--space-2);
  }
  .release-nav__year {
    display: none;
  }
  .release-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 var(--release-card-width);
            flex: 0 0 var(--release-card-width);
    width: var(--release-card-width);
    --release-card-media-width: 100%;
    max-width: none;
    height: auto;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .release-card__art {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    aspect-ratio: 1;
  }
  .release-card__info {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    min-height: var(--release-info-height);
    padding: var(--space-4) var(--space-5);
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: var(--space-3);
  }
  .release-card__title-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: var(--space-3);
  }
  .release-card__title {
    font-size: var(--text-2xl);
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    text-overflow: clip;
  }
  .release-card__art img {
    width: 100%;
    max-width: none;
  }
  .release-card__links {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-bottom: 0;
  }
}
@media (max-width: 576px) {
  :root {
    --release-card-width: 76vw;
    --release-track-block-pad: var(--space-4);
  }
  .release-card__info {
    min-height: 120px;
    padding: var(--space-4) 0 0;
  }
}
.page-template-page-community-php .site-content,
.page-template-page-community-php .site-main {
  background: var(--color-bg-dark);
}

.community-page {
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  background: var(--color-bg-dark);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  color: var(--color-white);
}
.community-page__inner {
  min-height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (max-width: 768px) {
  .community-page__inner {
    padding-top: 0;
  }
}
.community-page__layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: clamp(var(--space-6), 3vw, var(--space-10));
  margin-block: auto;
}
.community-page__layout--no-media {
  grid-template-columns: minmax(0, 1fr);
}
.community-page__media {
  width: 100%;
  margin: 0;
  height: 100%;
}
.community-page__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  height: 100%;
  min-height: 540px;
  aspect-ratio: 4/5;
}
.community-page__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: var(--space-10);
  min-width: 0;
}
.community-page__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  -webkit-column-gap: var(--space-6);
     -moz-column-gap: var(--space-6);
          column-gap: var(--space-6);
  row-gap: var(--space-1);
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding-bottom: var(--space-5);
  border-bottom: var(--border-width) solid var(--color-white);
}
.community-page__info {
  display: contents;
}
.community-page__label {
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--global-border-radius);
  background-color: var(--color-white);
  color: var(--color-black);
  display: inline-block;
  padding: 3px 6px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  justify-self: start;
  margin-bottom: var(--space-2);
}
.community-page__name {
  font-size: var(--text-3xl);
  font-weight: var(--weight-black);
  letter-spacing: var(--tracking-normal);
  line-height: var(--leading-tight);
  margin: 0;
  text-transform: uppercase;
  word-break: break-word;
  text-align: left;
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  min-width: 0;
  width: 100%;
}
.community-page__blank-label {
  display: none;
}
.community-page__pricing {
  display: contents;
}
.community-page__pricing--monthly-only .community-page__price-option--monthly .community-page__price-number,
.community-page__pricing--monthly-only .community-page__price-option--monthly .community-page__price-label {
  grid-column: 2;
}
.community-page__pricing--yearly-only .community-page__price-option--yearly .community-page__price-number,
.community-page__pricing--yearly-only .community-page__price-option--yearly .community-page__price-label {
  grid-column: 2;
}
.community-page__pricing--both .community-page__price-option--monthly .community-page__price-number,
.community-page__pricing--both .community-page__price-option--monthly .community-page__price-label {
  grid-column: 2;
}
.community-page__pricing--both .community-page__price-option--yearly .community-page__price-number,
.community-page__pricing--both .community-page__price-option--yearly .community-page__price-label {
  grid-column: 3;
}
.community-page__price-option {
  display: contents;
}
.community-page__price-option--monthly .community-page__price-number {
  font-size: var(--text-3xl);
  font-weight: var(--weight-black);
  letter-spacing: var(--tracking-normal);
  line-height: var(--leading-tight);
  grid-row: 2;
  align-self: end;
  font-variant-numeric: tabular-nums;
  line-height: 0.95;
}
.community-page__price-option--monthly .community-page__price-label {
  font-size: var(--text-xs);
  font-weight: var(--weight-regular);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--global-border-radius);
  grid-row: 3;
  align-self: start;
  color: var(--color-text-muted-dark);
  line-height: 1;
  margin-top: var(--space-1);
}
.community-page__price-option--yearly .community-page__price-number {
  grid-row: 2;
  align-self: end;
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  font-variant-numeric: tabular-nums;
  line-height: 0.95;
}
.community-page__price-option--yearly .community-page__price-label {
  font-size: var(--text-xs);
  font-weight: var(--weight-regular);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--global-border-radius);
  grid-row: 3;
  align-self: start;
  color: var(--color-text-muted-dark);
  line-height: 1;
  margin-top: var(--space-1);
}
.community-page .community-page__price-number {
  width: 100%;
}
.community-page__price-number, .community-page__price-label {
  display: inline-block;
  justify-self: end;
  min-width: 0;
}
.community-page__price-number {
  font-variant-numeric: tabular-nums;
}
.community-page__includes-title {
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--global-border-radius);
  color: var(--color-white);
}
.community-page__includes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--space-1);
  list-style: none;
  padding: 0;
  margin: var(--space-2) 0 0;
  counter-reset: includes;
}
.community-page__includes-item {
  counter-increment: includes;
  display: grid;
  grid-template-columns: var(--space-8) 1fr;
  -webkit-column-gap: var(--space-3);
     -moz-column-gap: var(--space-3);
          column-gap: var(--space-3);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  font-size: var(--text-sm);
  font-weight: var(--weight-regular);
  letter-spacing: var(--tracking-wide);
  color: var(--color-gray-300);
  line-height: var(--leading-normal);
}
.community-page__includes-item::before {
  content: counter(includes, decimal-leading-zero);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--global-border-radius);
  display: block;
  -ms-flex-item-align: start;
      align-self: start;
  font-size: var(--text-base);
  font-variant-numeric: tabular-nums;
  color: var(--color-text-muted-dark);
  line-height: var(--leading-normal);
}
@media (max-width: 768px) {
  .community-page__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-8);
  }
  .community-page__media {
    width: calc(100% + var(--page-gutter) * 2);
    max-width: none;
    height: auto;
    margin-inline: calc(var(--page-gutter) * -1);
  }
  .community-page__image {
    min-height: 0;
  }
  .community-page__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: var(--space-2);
  }
  .community-page__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
  }
  .community-page__label {
    margin-bottom: var(--space-4);
  }
  .community-page__name {
    min-width: 0;
  }
  .community-page__pricing {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: var(--space-6);
    width: 100%;
  }
  .community-page__pricing--both {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: var(--space-4);
  }
  .community-page__pricing--both .community-page__price-option {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .community-page__pricing--both .community-page__price-option--yearly {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .community-page__price-option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .community-page__price-option--monthly {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .community-page__price-option--monthly .community-page__price-number {
    font-size: var(--text-2xl);
  }
  .community-page__price-option--yearly {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .community-page__price-number, .community-page__price-label {
    justify-self: auto;
  }
}

.community-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--space-6);
  padding-top: var(--space-6);
  border-top: var(--border-width) solid var(--color-white);
}
.community-cta__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--space-6);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.community-cta__columns > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.community-cta__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--space-3);
  min-width: 180px;
}
.community-cta__label {
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--global-border-radius);
  color: var(--color-text-muted-dark);
}
.community-cta__disclaimer {
  font-size: var(--text-xs);
  font-weight: var(--weight-regular);
  letter-spacing: var(--tracking-normal);
  color: var(--color-text-muted-dark);
  line-height: var(--leading-relaxed);
  max-width: 480px;
  margin-top: var(--space-2);
}
.community-cta .btn {
  --btn-bg: var(--color-white);
  --btn-color: var(--color-black);
  --btn-border-color: var(--color-white);
  --btn-hover-bg: transparent;
  --btn-hover-color: var(--color-white);
  --btn-hover-border: var(--color-white);
  min-width: 160px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.community-cta .btn--ghost {
  --btn-ghost-bg: transparent;
  --btn-ghost-color: var(--color-white);
  --btn-ghost-border-color: var(--color-white);
  --btn-ghost-hover-bg: var(--color-white);
  --btn-ghost-hover-color: var(--color-black);
  --btn-ghost-hover-border: var(--color-white);
}
@media (max-width: 576px) {
  .community-cta__columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: var(--space-6);
  }
  .community-cta__col {
    width: 100%;
    min-width: auto;
  }
  .community-cta .btn {
    width: 100%;
  }
}

.not-found {
  --not-found-heading: clamp(2rem, 8vw, 5rem);
  --btn-bg: var(--color-white);
  --btn-color: var(--color-black);
  --btn-border-color: var(--color-white);
  --btn-hover-bg: transparent;
  --btn-hover-color: var(--color-white);
  --btn-hover-border: var(--color-white);
  background-color: var(--color-black);
  color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  padding: var(--page-gutter);
  text-align: center;
}
.not-found .btn--ghost {
  --btn-ghost-bg: transparent;
  --btn-ghost-color: var(--color-white);
  --btn-ghost-border-color: var(--color-white);
  --btn-ghost-hover-bg: var(--color-white);
  --btn-ghost-hover-color: var(--color-black);
  --btn-ghost-hover-border: var(--color-white);
}
.not-found__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--space-6);
  max-width: var(--max-width-narrow);
}
.not-found__eyebrow {
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  border-radius: var(--global-border-radius);
  background-color: var(--color-white);
  color: var(--color-black);
  white-space: nowrap;
  padding: 2px 6px;
}
.not-found__heading {
  font-size: var(--not-found-heading);
  font-weight: var(--weight-black);
  letter-spacing: var(--tracking-tight);
  text-transform: uppercase;
  line-height: 0.85;
}
.not-found__message {
  font-size: var(--text-sm);
  font-weight: var(--weight-regular);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  border-radius: var(--global-border-radius);
  color: var(--color-text-muted-dark);
}
.not-found__song {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  border-radius: var(--global-border-radius);
  color: var(--color-white);
  text-transform: uppercase;
}
.not-found__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: var(--space-3);
}