*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #000000;
  --white: #f5f5f5;
  --grey: #888888;
  --yellow: #adf44f;
  --nav-height: 64px;
  /* Visible viewport — sits above mobile browser chrome (not under Safari) */
  --app-height: 100dvh;
  --cursor: url("assets/cursor.png") 6 5, auto;
  --cursor-hover: url("assets/cursor-hover.png") 6 5, auto;
}

@supports (height: 100svh) {
  :root {
    --app-height: 100svh;
  }
}

@supports (height: 100dvh) {
  :root {
    --app-height: 100dvh;
  }
}

html.lenis,
html.lenis body {
  height: auto;
}

html {
  height: 100%;
  background: var(--black);
}

html,
body {
  min-height: 100%;
  min-height: var(--app-height);
  background: var(--black);
  color: var(--white);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  cursor: var(--cursor);
}

a,
button,
.nav__item,
.side-menu__item,
.menu-toggle,
.side-menu__close,
.side-menu__backdrop,
.lang-switch__btn,
.artists__card,
.socials__link,
.connect__address,
.tickets__card,
.unreleased__mail,
.tickets__all,
.shop__all,
.shop__buy,
.shop__media,
.shop-checkout__close,
.shop-checkout__backdrop,
.shop-checkout__size,
.shop-checkout__fit-btn,
.shop-checkout__qty-btn,
.shop-checkout__pay,
.contact-form__submit,
.contact-form__file-remove,
.contact-form__dropzone,
.dates__link,
.music__play,
.artist-page__back,
.music__tab,
.site-footer__link,
.site-footer__socials a,
.site-footer__mail,
[role="button"] {
  cursor: var(--cursor);
}

a:hover,
a:focus-visible,
button:hover,
button:focus-visible,
.nav__item:hover,
.nav__item:focus-visible,
.side-menu__item:hover,
.side-menu__item:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible,
.side-menu__close:hover,
.side-menu__close:focus-visible,
.artists__card:hover,
.artists__card:focus-visible,
.socials__link:hover,
.socials__link:focus-visible,
.connect__address:hover,
.connect__address:focus-visible,
.tickets__card:hover,
.tickets__card:focus-visible,
.tickets__all:hover,
.tickets__all:focus-visible,
.shop__all:hover,
.shop__all:focus-visible,
.shop__buy:hover,
.shop__buy:focus-visible,
.shop__media:hover,
.shop__media:focus-visible,
.shop-checkout__close:hover,
.shop-checkout__close:focus-visible,
.shop-checkout__size:hover,
.shop-checkout__size:focus-visible,
.shop-checkout__fit-btn:hover,
.shop-checkout__fit-btn:focus-visible,
.shop-checkout__qty-btn:hover,
.shop-checkout__qty-btn:focus-visible,
.shop-checkout__pay:hover,
.shop-checkout__pay:focus-visible,
.contact-form__submit:hover,
.contact-form__submit:focus-visible,
.contact-form__file-remove:hover,
.contact-form__file-remove:focus-visible,
.contact-form__dropzone:hover,
.contact-form__dropzone:focus-visible,
.dates__link:hover,
.dates__link:focus-visible,
.music__play:hover,
.music__play:focus-visible,
.music__tab:hover,
.music__tab:focus-visible,
.artist-page__back:hover,
.artist-page__back:focus-visible,
.site-footer__link:hover,
.site-footer__link:focus-visible,
.site-footer__socials a:hover,
.site-footer__socials a:focus-visible,
.site-footer__mail:hover,
.site-footer__mail:focus-visible,
[role="button"]:hover,
[role="button"]:focus-visible {
  cursor: var(--cursor-hover);
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.page {
  position: relative;
  min-height: calc(100dvh - var(--nav-height));
  padding-bottom: var(--nav-height);
}

.panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  min-height: calc(100dvh - var(--nav-height));
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.panel--home {
  display: block;
  padding: 0;
  overflow: hidden;
  height: var(--app-height);
  min-height: var(--app-height);
}

.panel--home.is-active {
  display: block;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.home {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  padding: 0;
  background: #0a0a0a;
}

.home__hero {
  --home-fade: 0;
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  height: var(--app-height);
  min-height: var(--app-height);
  overflow: hidden;
  background: var(--black);
}

.home__hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: min(36vh, 18rem);
  pointer-events: none;
  opacity: var(--home-fade);
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(10, 10, 10, 0.4) 45%,
    rgba(10, 10, 10, 0.88) 78%,
    #0a0a0a 100%
  );
  transition: opacity 0.05s linear;
}

.home__logo-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  user-select: none;
  pointer-events: none;
}

.home__scroll {
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1.5rem, 5vh, 3rem);
  top: auto;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  transform: none;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s ease;
  filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.75));
}

.home__scroll.is-hidden {
  opacity: 0;
}

.home__scroll-label {
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  padding-left: 0.28em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  animation: home-scroll-pulse 2.2s ease-in-out infinite;
}

.home__scroll-arrow {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
  color: var(--white);
  animation: home-scroll-bounce 2.2s ease-in-out infinite;
}

@keyframes home-scroll-pulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

@keyframes home-scroll-bounce {
  0%,
  100% {
    opacity: 0.45;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(6px);
  }
}

.home__logo-video::-webkit-media-controls {
  display: none !important;
}

.home__logo-video::-webkit-media-controls-enclosure {
  display: none !important;
}

.home__logo-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.home__logo-video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0;
  pointer-events: none;
}

.home-about {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  padding: 1.25rem clamp(1.25rem, 4vw, 2.5rem) 1rem clamp(1.25rem, 4vw, 3rem);
  box-sizing: border-box;
  text-align: left;
}

.home-about__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 40vw);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  width: 100%;
  max-width: none;
}

.home-about__copy {
  min-width: 0;
}

.home-about__title {
  color: var(--white);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 0.75rem;
}

.home-about__text {
  position: relative;
  color: var(--grey);
  font-family: inherit;
  font-size: clamp(1.1rem, 2.4vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: min(38rem, 100%);
  margin: 0;
}

.home-about__sizer {
  display: block;
  visibility: hidden;
  pointer-events: none;
}

.home-about__typed {
  position: absolute;
  inset: 0;
}

.home-about__typed.is-typing::after,
.home-about__typed.is-typed::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.9em;
  margin-left: 0.08em;
  background: var(--yellow);
  vertical-align: -0.05em;
  animation: connect-caret 0.85s steps(1) infinite;
}

.home-about__carousel {
  position: relative;
  width: 100%;
  max-width: none;
  justify-self: stretch;
  margin-top: -0.15rem;
  margin-right: calc(-1 * clamp(0.5rem, 2vw, 1.5rem));
  overflow: hidden;
  isolation: isolate;
}

.home-about__carousel::before,
.home-about__carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28%;
  z-index: 4;
  pointer-events: none;
}

.home-about__carousel::before {
  left: 0;
  background: linear-gradient(
    to right,
    #0a0a0a 0%,
    rgba(10, 10, 10, 0.88) 42%,
    transparent 100%
  );
}

.home-about__carousel::after {
  right: 0;
  background: linear-gradient(
    to left,
    #0a0a0a 0%,
    rgba(10, 10, 10, 0.88) 42%,
    transparent 100%
  );
}

.home-about__carousel-stage {
  position: relative;
  width: 100%;
  height: calc(clamp(11rem, 18vw, 16rem) * 4 / 3);
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}

.home-about__carousel-track {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  width: max-content;
  will-change: transform;
}

.home-about__carousel-slide {
  flex: 0 0 auto;
  width: clamp(11rem, 18vw, 16rem);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #151515;
  transform: scale(0.78);
  opacity: 0.7;
  transform-origin: center top;
  will-change: transform, opacity;
}

.home-about__carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tickets {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 0;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem) 2.5rem;
  background: transparent;
  box-sizing: border-box;
}

.site-footer {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 1rem;
  padding:
    2.75rem clamp(1.25rem, 4vw, 3rem)
    calc(var(--nav-height) + 2.75rem);
  border-top: 1px solid #1c1c1c;
  box-sizing: border-box;
}

.site-footer__inner {
  display: grid;
  gap: 1.75rem;
  max-width: 1100px;
}

.site-footer__name {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-footer__tag {
  margin-top: 0.45rem;
  color: var(--grey);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.site-footer__nav,
.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.site-footer__link,
.site-footer__socials a,
.site-footer__mail {
  color: var(--grey);
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__link:hover,
.site-footer__link:focus-visible,
.site-footer__socials a:hover,
.site-footer__socials a:focus-visible,
.site-footer__mail:hover,
.site-footer__mail:focus-visible {
  color: var(--yellow);
}

.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding-top: 0.35rem;
}

.site-footer__copy {
  color: #555;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.lang-switch__btn {
  background: none;
  border: 1px solid #2a2a2a;
  color: var(--grey);
  font: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.65rem;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.lang-switch__btn:hover,
.lang-switch__btn:focus-visible {
  color: var(--white);
  border-color: #444;
}

.lang-switch__btn.is-active {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
}

.lang-switch--menu {
  margin-top: auto;
  padding-top: 1.5rem;
}

.lang-switch--home {
  position: absolute;
  top: calc(0.85rem + env(safe-area-inset-top, 0px));
  right: calc(0.85rem + env(safe-area-inset-right, 0px));
  z-index: 3;
  margin: 0;
  display: none;
}

.lang-switch--fixed {
  position: fixed;
  top: calc(0.85rem + env(safe-area-inset-top, 0px));
  right: calc(0.85rem + env(safe-area-inset-right, 0px));
  z-index: 120;
  margin: 0;
}

body.menu-open .lang-switch--fixed,
body.artist-open .lang-switch--fixed,
body.shop-checkout-open .lang-switch--fixed {
  opacity: 0;
  pointer-events: none;
}

.tickets__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tickets__heading {
  color: var(--white);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tickets__all {
  color: var(--grey);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.tickets__all:hover,
.tickets__all:focus-visible {
  color: var(--yellow);
}

.tickets__status {
  color: var(--grey);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.tickets__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

.tickets__card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  min-width: 0;
  transition: opacity 0.2s ease;
}

.tickets__card:hover,
.tickets__card:focus-visible {
  opacity: 0.88;
}

.tickets__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 0.65rem;
  background: #151515;
}

.tickets__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tickets__image--empty {
  background:
    linear-gradient(135deg, rgba(173, 244, 79, 0.18), transparent 55%),
    #151515;
}

.tickets__body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-top: 0.9rem;
}

.tickets__title {
  color: var(--white);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.tickets__venue {
  color: var(--grey);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.tickets__date {
  color: #ff5c47;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.tickets__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.35rem;
}

.tickets__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.55rem;
  border: 1px solid #3a3a3a;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}

.tickets__tag--more {
  color: var(--grey);
}

.panel--artists {
  display: block;
}

.panel--artists.is-active {
  display: block;
}

.panel--music {
  display: block;
  overflow: hidden;
  height: calc(100dvh - var(--nav-height));
  align-items: flex-start;
  justify-content: flex-start;
}

.panel--music.is-active {
  display: block;
}

.panel--dates {
  display: block;
  overflow: hidden;
  height: calc(100dvh - var(--nav-height));
  align-items: flex-start;
  justify-content: flex-start;
}

.panel--dates.is-active {
  display: block;
}

.panel--shop {
  display: block;
  overflow: hidden;
  overflow-y: auto;
  height: calc(100dvh - var(--nav-height));
  align-items: flex-start;
  justify-content: flex-start;
}

.panel--shop.is-active {
  display: block;
}

.shop {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem clamp(1.25rem, 4vw, 2.5rem) calc(var(--nav-height) + 2.5rem);
}

.shop__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.shop__heading {
  color: var(--white);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.shop__all {
  color: var(--grey);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.shop__all:hover,
.shop__all:focus-visible {
  color: var(--yellow);
}

.shop__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.shop__item {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.shop__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #2a2a2a;
  border: 0;
  padding: 0;
  transition: opacity 0.2s ease;
}

.shop__media-label {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 1;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.85);
  text-align: left;
  pointer-events: none;
}

.shop__buy {
  margin-top: 0.55rem;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
  width: fit-content;
  border: 0;
  background: transparent;
  padding: 0;
  font-family: inherit;
}

.shop__media:hover,
.shop__media:focus-visible {
  opacity: 0.88;
}

.shop__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop__image--empty {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(173, 244, 79, 0.28), transparent 55%),
    #3a3a3a;
}

img.shop__image.shop__image--empty {
  object-fit: none;
  background:
    linear-gradient(135deg, rgba(173, 244, 79, 0.16), transparent 55%),
    #151515;
}

.shop__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-top: 0.95rem;
}

.shop__name {
  color: var(--white);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shop__detail {
  color: var(--grey);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.shop__price {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 0.15rem;
}

.shop__buy:hover,
.shop__buy:focus-visible {
  opacity: 0.75;
}

.shop__empty {
  color: var(--grey);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shop-checkout {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.shop-checkout.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.shop-checkout__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.72);
  cursor: var(--cursor);
}

.shop-checkout__panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  height: 100%;
  background: #0a0a0a;
  border-left: 1px solid #222;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 1.5rem clamp(1.25rem, 3vw, 2.25rem) calc(var(--nav-height) + 2rem);
  transform: translateX(24px);
  transition: transform 0.35s ease;
}

.shop-checkout.is-open .shop-checkout__panel {
  transform: translateX(0);
}

.shop-checkout__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.25rem;
  border: 1px solid #333;
  background: transparent;
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1;
}

.shop-checkout__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

.shop-checkout__media {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.shop-checkout__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  background: #151515;
}

.shop-checkout__image--empty {
  background:
    linear-gradient(135deg, rgba(173, 244, 79, 0.16), transparent 55%),
    #151515;
}

.shop-checkout__title {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-checkout__detail {
  margin-top: 0.45rem;
  color: var(--grey);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.shop-checkout__price {
  margin-top: 0.85rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.shop-checkout__label {
  margin-bottom: 0.55rem;
  color: var(--grey);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.shop-checkout__sizes,
.shop-checkout__fit,
.shop-checkout__qty {
  margin-top: 1.35rem;
}

.shop-checkout__size-list,
.shop-checkout__fit-list,
.shop-checkout__qty-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.shop-checkout__size,
.shop-checkout__fit-btn,
.shop-checkout__qty-btn {
  min-width: 2.75rem;
  height: 2.75rem;
  border: 1px solid #333;
  background: transparent;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.shop-checkout__fit-btn {
  min-width: 5.5rem;
  padding: 0 1rem;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.shop-checkout__size.is-active,
.shop-checkout__fit-btn.is-active {
  border-color: var(--yellow);
  color: var(--yellow);
}

.shop-checkout__qty-value {
  min-width: 2rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
}

.shop-checkout__pay {
  margin-top: 1.75rem;
  width: 100%;
  max-width: 22rem;
  height: 3rem;
  border: 0;
  background: var(--yellow);
  color: #000;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.shop-checkout__pay:disabled {
  opacity: 0.55;
}

.shop-checkout__status {
  margin-top: 1rem;
  color: var(--grey);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.shop-checkout__status.is-error {
  color: #ff6b5a;
}

.shop-checkout__widget {
  margin-top: 1.25rem;
  max-width: 26rem;
  padding: 1rem;
  background: #111;
  border: 1px solid #2a2a2a;
}

.shop-checkout__widget iframe {
  max-width: 100%;
}

body.shop-checkout-open {
  overflow: hidden;
}

.dates {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
}

.dates__feed {
  width: 100%;
}

.dates__empty {
  padding-top: 3rem;
  color: var(--grey);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dates__month {
  margin-bottom: 3.75rem;
}

.dates__month:first-of-type {
  padding-top: 2rem;
}

.dates__month:last-child {
  margin-bottom: 0;
}

.dates__month-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.dates__list {
  list-style: none;
}

.dates__item {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.25rem 0;
  border-bottom: 1px solid #1a1a1a;
}

.dates__list .dates__item:first-child {
  border-top: 1px solid #1a1a1a;
}

.dates__date {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--yellow);
}

.dates__event {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.dates__guest {
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  opacity: 0.85;
}

.dates__location {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--grey);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dates__country {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.dates__flag {
  font-size: 1rem;
  line-height: 1;
  text-transform: none;
}

.dates__link {
  position: absolute;
  top: 2.5rem;
  right: 1.5rem;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
}

.dates__link:hover {
  color: var(--yellow);
}

.music {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 2.5rem;
}

.music__tabs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.music__tab {
  background: none;
  border: none;
  color: var(--grey);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0;
  position: relative;
  transition: color 0.2s ease;
}

.music__tab:hover,
.music__tab.is-active {
  color: var(--white);
}

.music__tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.4rem;
  height: 2px;
  background: var(--yellow);
}

.music__status {
  color: var(--grey);
  text-align: center;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.music__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.music__card {
  display: flex;
  flex-direction: column;
}

.music__cover-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #111;
}

.music__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.music__play {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  border: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.55));
  color: var(--white);
  transition: color 0.2s ease, background 0.2s ease;
}

.music__play:hover,
.music__play.is-playing {
  color: var(--yellow);
}

.music__play-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.music__title {
  margin-top: 0.75rem;
  font-size: clamp(0.7rem, 1.6vw, 0.875rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
}

.music__title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.music__title-link:hover,
.music__title-link:focus-visible {
  color: var(--yellow);
}

.sc-player {
  position: fixed;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.artists-stage {
  position: relative;
  width: 100%;
  height: calc(100dvh - var(--nav-height));
}

.artists-view {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
  pointer-events: none;
}

.artists-view.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.artists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  height: 100%;
}

.artists__card {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.artist-page {
  background: var(--black);
  overflow: hidden;
}

.artist-page--editorial::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: var(--nav-height);
  z-index: 0;
  pointer-events: none;
  background-color: var(--black);
  background-image:
    linear-gradient(rgba(245, 245, 245, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 245, 245, 0.12) 1px, transparent 1px);
  background-size: 4rem 4rem;
  background-position: center center;
}

.artist-page--editorial .artist-page__editorial {
  position: relative;
  z-index: 1;
  background: transparent;
}

.artist-page__scroll {
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 245, 245, 0.2) transparent;
}

.artist-page--editorial .artist-page__scroll {
  overflow-x: hidden;
  overflow-y: auto;
  scroll-snap-type: y proximity;
  -webkit-overflow-scrolling: touch;
  position: relative;
  z-index: 1;
  background: transparent;
}

.artist-page__scroll::-webkit-scrollbar {
  height: 6px;
  width: 6px;
}

.artist-page__scroll::-webkit-scrollbar-thumb {
  background: rgba(245, 245, 245, 0.2);
  border-radius: 3px;
}

.artist-page__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100dvh - var(--nav-height));
}

.artist-page__back {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 5;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.75rem;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.artist-page__back:hover {
  opacity: 1;
}

.artist-page__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.artist-page__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2.5rem;
  overflow-y: auto;
}

.artist-page__name {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.artist-page__bio {
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
  max-width: 28rem;
  white-space: pre-line;
}

.artist-page__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 0.5rem;
  padding: 0.5rem;
}

.artist-page__gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  filter: blur(6px);
  transition:
    opacity 0.85s ease var(--reveal-delay, 0s),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0s),
    filter 0.85s ease var(--reveal-delay, 0s);
}

.artist-page__gallery-item.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.artist-page__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.artist-page__gallery-item:hover img,
.artist-page__gallery-item:focus-within img {
  transform: scale(1.04);
}

.artist-page__gallery-item--featured {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

.artist-page__gallery-item--portrait {
  aspect-ratio: 3 / 4;
}

.artist-page__gallery-item--landscape {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

.artist-page__gallery-item--default {
  aspect-ratio: 3 / 4;
}

.artist-page__editorial {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 0 2rem;
  gap: 0;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  width: 100%;
  padding: clamp(1rem, 2vw, 1.5rem);
  box-sizing: border-box;
  background: transparent;
}

.editorial-grid__cell {
  background: transparent;
  min-width: 0;
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  transition:
    opacity 0.85s ease var(--reveal-delay, 0s),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0s),
    filter 0.85s ease var(--reveal-delay, 0s);
}

.editorial-grid__cell.is-revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.editorial-grid__cell--media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.editorial-grid__cell--media .editorial-panel__media {
  width: 100%;
  height: 100%;
  align-self: stretch;
}

.editorial-grid__cell--wide,
.editorial-grid__cell--tall {
  grid-column: span 2;
  aspect-ratio: 4 / 5;
}

.editorial-grid__cell--copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  box-sizing: border-box;
}

.editorial-panel:not(.editorial-panel--manifesto) {
  width: min(100%, 42rem);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
}

.editorial-panel {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  align-items: start;
  gap: 1.25rem;
  width: 100%;
  height: auto;
  min-height: auto;
  padding: clamp(3rem, 7vh, 4.5rem) 0 clamp(2.5rem, 5vh, 3.5rem);
  scroll-snap-align: start;
  background: transparent;
  opacity: 0;
  transform: translateY(32px);
  filter: blur(8px);
  transition:
    opacity 0.9s ease var(--reveal-delay, 0s),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0s),
    filter 0.9s ease var(--reveal-delay, 0s);
}

.editorial-panel.is-revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.editorial-panel--reverse .editorial-panel__copy {
  order: 2;
}

.editorial-panel--reverse .editorial-panel__media {
  order: 1;
}

.editorial-panel--intro {
  padding: 0;
}

.editorial-panel--manifesto {
  min-height: calc(100dvh - var(--nav-height));
  padding: 0;
  opacity: 1;
  transform: none;
  filter: none;
  background: transparent;
  color: var(--white);
}

.editorial-panel--manifesto.is-revealed {
  opacity: 1;
  transform: none;
  filter: none;
}

.manifesto {
  --drift: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100dvh - var(--nav-height));
  width: 100%;
  max-width: none;
  overflow: hidden;
  padding: 4.5rem 0 5.5rem;
  box-sizing: border-box;
  background: transparent;
}

.manifesto__stage {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  flex: 0 0 auto;
}

.manifesto__photo {
  position: relative;
  z-index: 1;
  width: min(30vw, 340px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.manifesto__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.manifesto__title {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(0.15rem, 1.2vh, 0.8rem);
  margin: 0;
  pointer-events: none;
  font-size: clamp(3.6rem, 12.5vw, 9rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: none;
  color: var(--yellow);
  mix-blend-mode: difference;
}

.manifesto__line {
  display: block;
  width: 100%;
  will-change: transform;
  transition: transform 0.05s linear;
}

/* Imaginary vertical midline at 50%: built & groove sit to its right, on to its left */
.manifesto__line--built {
  text-align: left;
  padding-left: 50%;
  transform: translateX(calc(var(--drift) * 20vw));
}

.manifesto__line--on {
  text-align: right;
  padding-right: 50%;
  transform: translateX(calc(var(--drift) * -18vw));
}

.manifesto__line--groove {
  text-align: left;
  padding-left: 50%;
  transform: translateX(calc(var(--drift) * 16vw));
}

.manifesto.is-entering .manifesto__line,
.manifesto.is-arrived .manifesto__line {
  transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

.manifesto.is-entering .manifesto__line--built {
  transform: translateX(20vw);
}

.manifesto.is-entering .manifesto__line--on {
  transform: translateX(-18vw);
}

.manifesto.is-entering .manifesto__line--groove {
  transform: translateX(16vw);
}

.manifesto.is-arrived .manifesto__line--built,
.manifesto.is-arrived .manifesto__line--on,
.manifesto.is-arrived .manifesto__line--groove {
  transform: translateX(0);
}

.manifesto__aside {
  position: relative;
  z-index: 3;
  align-self: flex-start;
  margin-top: 1.75rem;
  margin-left: clamp(1.25rem, 4vw, 3rem);
  max-width: min(56rem, 84vw);
  min-height: 2.6em;
  will-change: transform, opacity;
  transform: translateX(calc(var(--drift) * -24vw));
  opacity: calc(1 - (var(--drift) * 0.9));
  transition: transform 0.05s linear, opacity 0.05s linear;
}

.manifesto.is-entering .manifesto__aside {
  transform: translateX(-24vw);
  opacity: 0;
  transition:
    transform 1.15s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.85s ease;
}

.manifesto.is-arrived .manifesto__aside {
  transform: translateX(0);
  opacity: 1;
  transition:
    transform 1.15s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.85s ease;
}

.manifesto__aside.is-typing::after,
.manifesto__aside.is-typed::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.9em;
  margin-left: 0.08em;
  background: var(--yellow);
  vertical-align: -0.05em;
  animation: connect-caret 0.85s steps(1) infinite;
}

.editorial__headline,
.manifesto__aside {
  color: var(--white);
  font-family: inherit;
  font-size: clamp(1.35rem, 3.2vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.artist-page--editorial .artist-page__back {
  color: #fff;
  mix-blend-mode: difference;
  opacity: 0.9;
}

.editorial-panel--visual {
  display: block;
  width: 100%;
  padding-top: 0;
  padding-bottom: clamp(2.5rem, 5vh, 3.5rem);
}

.editorial-panel--wide .editorial-panel__media,
.editorial-panel--tall .editorial-panel__media {
  height: min(70vh, 640px);
}

.editorial-panel__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
  padding-bottom: 0;
}

.editorial-grid__cell--copy.editorial-panel__copy {
  justify-content: center;
  height: 100%;
}

.editorial-grid .editorial__headline {
  font-size: clamp(0.95rem, 1.35vw, 1.35rem);
}

.editorial-grid .editorial__title {
  font-size: clamp(1rem, 1.5vw, 1.45rem);
}

.editorial-panel__media {
  width: 100%;
  height: min(58vh, 520px);
  overflow: hidden;
  align-self: stretch;
}

.editorial-panel--visual .editorial-panel__media {
  height: min(72vh, 640px);
}

.editorial-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.editorial__name {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 1.5rem;
}

.editorial__bio {
  color: var(--grey);
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  line-height: 1.75;
  letter-spacing: 0.03em;
  max-width: 26rem;
  white-space: pre-line;
}

.editorial__label {
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.editorial__title {
  max-width: none;
}

.editorial__title--link {
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.editorial__title--link:hover,
.editorial__title--link:focus-visible {
  opacity: 0.72;
}

.editorial__dates {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.editorial__date {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.editorial__date-when {
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editorial__date-info {
  max-width: 26rem;
}

.editorial__contact {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.editorial__contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.editorial__contact-label {
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editorial__contact-link {
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.editorial__contact-link:hover,
.editorial__contact-link:focus-visible {
  opacity: 0.72;
}

.editorial__meta {
  max-width: none;
}

.artists__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.4s ease;
  z-index: 2;
  pointer-events: none;
}

.artists__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 40%);
  pointer-events: none;
  z-index: 3;
}

.artists__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.artists__card[data-artist="camiltia"] .artists__image {
  object-position: center 42%;
  object-view-box: inset(7%);
}

.artists__card[data-artist="edo"] .artists__image {
  object-position: center 30%;
}

.artists__name {
  position: absolute;
  bottom: 6rem;
  left: 0;
  right: 0;
  z-index: 4;
  text-align: center;
  font-size: clamp(1.25rem, 4.5vw, 2.25rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: transform 0.4s ease;
  transform-origin: center bottom;
}

@media (hover: hover) {
  .artists:hover .artists__card::before {
    background: rgba(0, 0, 0, 0.72);
  }

  .artists:hover .artists__card:hover::before {
    background: rgba(0, 0, 0, 0);
  }

  .artists__card:hover .artists__name {
    transform: scale(1.12);
  }
}

.panel__content {
  text-align: center;
  padding: 2rem;
}

.panel__title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.panel__placeholder {
  color: var(--grey);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.panel--socials {
  display: block;
  height: calc(var(--app-height, 100dvh) - var(--nav-height));
  overflow: hidden;
  padding: 0;
}

.panel--socials.is-active {
  display: block;
}

.panel--unreleased {
  display: flex;
  overflow: hidden;
  overflow-y: auto;
  height: calc(var(--app-height, 100dvh) - var(--nav-height));
  align-items: center;
  justify-content: center;
}

.panel--unreleased.is-active {
  display: flex;
}

.unreleased {
  position: relative;
  width: 100%;
  max-width: 36rem;
  margin: auto;
  padding: 3.5rem clamp(1.25rem, 4vw, 2.5rem) calc(var(--nav-height) + 3rem);
  box-sizing: border-box;
  text-align: center;
}

.unreleased__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2.25rem;
}

.unreleased__eyebrow {
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-inline-end: -0.2em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.unreleased__title {
  color: var(--white);
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-inline-end: -0.08em;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 1rem;
  text-align: center;
  width: fit-content;
  transform-origin: center;
}

.unreleased__title.is-celebrating {
  animation: unreleased-title-shake 0.7s ease-in-out;
}

.unreleased__confetti {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 4;
}

.unreleased__confetti-piece {
  position: absolute;
  bottom: -0.4rem;
  left: var(--x);
  width: var(--w);
  height: var(--h);
  border-radius: 1px;
  background: var(--c);
  opacity: 0;
  animation: unreleased-confetti-rise var(--dur) cubic-bezier(0.2, 0.7, 0.2, 1) var(--delay) forwards;
  will-change: transform, opacity;
}

@keyframes unreleased-title-shake {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  15% {
    transform: translate3d(-4px, 0, 0) rotate(-1.4deg);
  }
  30% {
    transform: translate3d(5px, -1px, 0) rotate(1.6deg);
  }
  45% {
    transform: translate3d(-3px, 1px, 0) rotate(-1deg);
  }
  60% {
    transform: translate3d(3px, 0, 0) rotate(0.8deg);
  }
  75% {
    transform: translate3d(-2px, 0, 0) rotate(-0.5deg);
  }
}

@keyframes unreleased-confetti-rise {
  0% {
    opacity: 0;
    transform: translate3d(0, 8px, 0) rotate(0deg) scale(0.7);
  }
  12% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--dx), calc(-1 * var(--travel)), 0)
      rotate(var(--rot)) scale(1);
  }
}

.unreleased__lead {
  color: var(--grey);
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  line-height: 1.45;
  letter-spacing: 0.02em;
  text-align: center;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.unreleased__form {
  width: 100%;
  max-width: 28rem;
  margin-inline: auto;
  text-align: center;
}

.unreleased__form .contact-form__field {
  align-items: center;
  text-align: center;
  width: 100%;
}

.unreleased__form .contact-form__legend {
  width: 100%;
  text-align: center;
}

.unreleased__form .contact-form__instagram,
.unreleased__form .contact-form__dropzone,
.unreleased__form .contact-form__files,
.unreleased__form .contact-form__status {
  width: 100%;
}

.unreleased__mail {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--grey);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.unreleased__mail:hover,
.unreleased__mail:focus-visible {
  color: var(--yellow);
}

.connect {
  --connect-gap: clamp(1.75rem, 3.5vw, 3rem);
  position: relative;
  width: 100%;
  height: calc(100dvh - var(--nav-height));
  overflow: hidden;
}

.connect__split {
  display: none;
}

.connect__col {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50%;
  z-index: 2;
}

.connect__col--socials {
  left: 50%;
  align-items: center;
  transform: translate(-50%, -50%);
  transition: opacity 0.55s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0.55;
}

.connect.is-split .connect__col--socials {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.connect__col--contact {
  /* Left edge sits just right of the fixed center line */
  left: calc(50% + var(--connect-gap));
  width: min(28rem, calc(50% - var(--connect-gap) - 2rem));
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translate(1.25rem, -50%);
  pointer-events: none;
  transition:
    opacity 0.85s ease 0.2s,
    transform 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

.connect.is-split .connect__col--contact {
  opacity: 1;
  transform: translate(0, -50%);
  pointer-events: auto;
}

.connect__label {
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 1.75rem;
}

.connect__intro {
  color: var(--white);
  font-size: clamp(1.35rem, 3.2vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: left;
  align-self: stretch;
  margin-bottom: 1.5rem;
  min-height: 2.6em;
}

.connect__intro.is-typing::after,
.connect__intro.is-typed::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.9em;
  margin-left: 0.08em;
  background: var(--yellow);
  vertical-align: -0.05em;
  animation: connect-caret 0.85s steps(1) infinite;
}

@keyframes connect-caret {
  50% {
    opacity: 0;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  width: 100%;
  text-align: center;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.contact-form__legend {
  color: var(--grey);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form__input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #2a2a2a;
  color: var(--white);
  font: inherit;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 0.65rem 0;
  outline: none;
  transition: border-color 0.2s ease;
}

.contact-form__input::placeholder {
  color: #555;
}

.contact-form__input:focus {
  border-bottom-color: var(--yellow);
}

.contact-form__instagram {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  border-bottom: 1px solid #2a2a2a;
  transition: border-color 0.2s ease;
}

.contact-form__instagram:focus-within {
  border-bottom-color: var(--yellow);
}

.contact-form__instagram.is-invalid {
  border-bottom-color: #c45c5c;
}

.contact-form__instagram.is-valid {
  border-bottom-color: var(--yellow);
}

.contact-form__instagram-prefix {
  color: var(--grey);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  user-select: none;
}

.contact-form__input--instagram {
  border-bottom: none;
  padding-left: 0;
}

.contact-form__input--instagram:focus {
  border-bottom-color: transparent;
}

.contact-form__instagram-status {
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--grey);
  margin-top: 0.15rem;
}

.contact-form__instagram-status.is-error {
  color: #c45c5c;
}

.contact-form__instagram-status.is-success {
  color: var(--yellow);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 5.5rem;
  line-height: 1.5;
}

.contact-form__dropzone {
  margin-top: 0.35rem;
  padding: 1.25rem 1rem;
  border: 1px dashed #333;
  color: var(--grey);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.contact-form__dropzone:hover,
.contact-form__dropzone:focus-visible,
.contact-form__dropzone.is-dragover {
  border-color: var(--yellow);
  color: var(--white);
  background: rgba(173, 244, 79, 0.04);
}

.contact-form__drop-title {
  color: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.contact-form__drop-hint {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  opacity: 0.75;
}

.contact-form__files {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  text-align: left;
}

.contact-form__file-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.65rem;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--white);
}

.contact-form__file-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-form__file-meta {
  color: var(--grey);
}

.contact-form__file-remove {
  background: none;
  border: none;
  color: var(--grey);
  font-size: 1.1rem;
  line-height: 1;
  padding: 0;
  transition: color 0.2s ease;
}

.contact-form__file-remove:hover,
.contact-form__file-remove:focus-visible {
  color: var(--yellow);
}

.contact-form__submit {
  margin-top: 0.35rem;
  align-self: center;
  background: none;
  border: 1px solid var(--yellow);
  color: var(--yellow);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  opacity: 1;
  background: var(--yellow);
  color: var(--black);
}

.contact-form__submit:disabled {
  opacity: 0.4;
}

.contact-form__status {
  min-height: 1.2em;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--grey);
}

.contact-form__status.is-error {
  color: #ff7b7b;
}

.contact-form__status.is-success {
  color: var(--yellow);
}

.connect__address {
  color: var(--grey);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-align: center;
  align-self: stretch;
  width: 100%;
  margin-top: 1.25rem;
  transition: color 0.2s ease;
}

.connect__address:hover,
.connect__address:focus-visible {
  color: var(--yellow);
}

.socials {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
  width: 100%;
  max-width: 420px;
  padding: 0;
}

.socials__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--white);
  transition: color 0.2s ease;
}

.socials__link:hover {
  color: var(--yellow);
}

.socials__icon {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.socials__name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  background: transparent;
  z-index: 100;
}

.nav::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(var(--nav-height) + 88px);
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.5) 38%,
    rgba(0, 0, 0, 0.18) 68%,
    transparent 100%
  );
  pointer-events: none;
  z-index: -1;
}

.nav__item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--grey);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.2s ease;
  padding: 0 0.5rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

.nav__item:hover {
  color: var(--white);
}

.nav__item.is-active {
  color: var(--white);
}

.nav__item.is-active::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: var(--yellow);
}

.nav__item {
  position: relative;
}

.nav__icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.nav__item.is-active .nav__icon,
.nav__item:hover .nav__icon {
  opacity: 1;
}

.menu-toggle {
  display: none;
}

.side-menu,
.side-menu__backdrop {
  display: none;
}

@media (max-width: 768px) {
  :root {
    --nav-height: 0px;
  }

  html,
  body {
    min-height: var(--app-height);
    min-height: -webkit-fill-available;
  }

  .nav {
    display: none !important;
  }

  .nav::before {
    display: none !important;
  }

  .lang-switch--fixed,
  .lang-switch--menu,
  .site-footer .lang-switch {
    display: none !important;
  }

  .lang-switch--home {
    display: inline-flex !important;
  }

  .menu-toggle {
    position: fixed;
    top: calc(0.85rem + env(safe-area-inset-top, 0px));
    left: calc(0.85rem + env(safe-area-inset-left, 0px));
    right: auto;
    z-index: 120;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0.7rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .menu-toggle__bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  body.menu-open .menu-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.menu-open .menu-toggle__bar:nth-child(2) {
    opacity: 0;
  }

  body.menu-open .menu-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .side-menu__backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 110;
    border: 0;
    background: rgba(0, 0, 0, 0.55);
  }

  body.menu-open .side-menu__backdrop {
    display: block;
  }

  .side-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    bottom: 0;
    z-index: 115;
    width: min(82vw, 320px);
    padding:
      calc(1.25rem + env(safe-area-inset-top, 0px))
      1.5rem
      calc(1.5rem + env(safe-area-inset-bottom, 0px))
      calc(1.5rem + env(safe-area-inset-left, 0px));
    background: #050505;
    border-left: 0;
    border-right: 1px solid #222;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    box-sizing: border-box;
  }

  .side-menu.is-open {
    transform: translateX(0);
  }

  .side-menu__close {
    align-self: flex-start;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid #333;
    background: transparent;
    color: var(--white);
    font-size: 1.2rem;
  }

  .side-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }

  .side-menu__item {
    display: block;
    width: 100%;
    padding: 0.95rem 0;
    border: 0;
    border-bottom: 1px solid #1c1c1c;
    background: transparent;
    color: var(--grey);
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-align: left;
    text-transform: uppercase;
    transition: color 0.2s ease;
  }

  .side-menu__item.is-active,
  .side-menu__item:hover,
  .side-menu__item:focus-visible {
    color: var(--yellow);
  }

  .panel--home,
  .home__hero {
    height: var(--app-height);
    min-height: var(--app-height);
  }

  .home__scroll {
    left: 50%;
    right: auto;
    bottom: calc(1.35rem + env(safe-area-inset-bottom, 0px));
    transform: translateX(-50%);
    flex-direction: column;
    gap: 0.4rem;
  }

  .home__scroll-label {
    writing-mode: horizontal-tb;
    transform: none;
    letter-spacing: 0.22em;
    padding-left: 0.22em;
    font-size: 0.7rem;
  }

  .home__scroll-arrow {
    width: 1.5rem;
    height: 1.5rem;
  }

  .panel--music,
  .panel--dates,
  .panel--shop,
  .panel--unreleased {
    height: var(--app-height);
    min-height: var(--app-height);
  }

  .panel--music,
  .panel--dates,
  .panel--shop,
  .panel--unreleased,
  .panel--home.is-active {
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .home__logo-video {
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
  }

  .home-about {
    padding: 1rem 1.25rem 0.75rem;
  }

  .home-about__body {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .home-about__carousel {
    max-width: 22rem;
    margin-right: 0;
    justify-self: center;
  }

  .home-about__carousel-slide {
    width: clamp(5.5rem, 28vw, 7.5rem);
  }

  .home-about__carousel-stage {
    height: calc(clamp(5.5rem, 28vw, 7.5rem) * 4 / 3);
  }

  .tickets {
    padding: 1rem 1.25rem 2rem;
  }

  .site-footer {
    padding:
      2.25rem 1.25rem
      calc(2.5rem + env(safe-area-inset-bottom, 0px));
  }

  .site-footer__meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .dates {
    padding:
      calc(4.25rem + env(safe-area-inset-top, 0px))
      1rem
      calc(5rem + env(safe-area-inset-bottom, 0px));
  }

  .dates__month:last-child {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
  }

  .music {
    padding-top: calc(3.5rem + env(safe-area-inset-top, 0px));
    padding-bottom: calc(3rem + env(safe-area-inset-bottom, 0px));
  }

  .shop {
    padding:
      calc(4.25rem + env(safe-area-inset-top, 0px))
      1.25rem
      calc(3rem + env(safe-area-inset-bottom, 0px));
  }

  .unreleased {
    padding:
      calc(4.5rem + env(safe-area-inset-top, 0px))
      1.25rem
      calc(3.5rem + env(safe-area-inset-bottom, 0px));
  }

  .artist-page__back,
  .shop-checkout__close {
    top: calc(0.85rem + env(safe-area-inset-top, 0px));
    left: calc(0.85rem + env(safe-area-inset-left, 0px));
  }

  .side-menu__close {
    display: none;
  }

  .side-menu__nav {
    margin-top: 3.5rem;
  }

  body.menu-toggle-hidden .menu-toggle,
  body.artist-open .menu-toggle,
  body.shop-checkout-open .menu-toggle {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
  }

  .menu-toggle {
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
  }
}

@media (max-width: 900px) {
  .shop__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .tickets__header {
    margin-bottom: 1.5rem;
  }

  .tickets__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .shop__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .shop-checkout__layout {
    grid-template-columns: 1fr;
  }

  .shop-checkout__media {
    max-width: 22rem;
  }

  .shop-checkout__panel {
    width: 100%;
  }

  .artist-page__editorial {
    max-width: none;
    padding: 0 0 2rem;
  }

  .editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-grid__cell--wide,
  .editorial-grid__cell--tall {
    grid-column: span 1;
    aspect-ratio: 3 / 4;
  }

  .editorial-grid__cell--copy {
    padding: 1.1rem 1rem;
  }

  .editorial-grid .editorial__headline,
  .editorial-grid .editorial__title {
    font-size: clamp(0.95rem, 3.8vw, 1.2rem);
  }

  .editorial-panel:not(.editorial-panel--manifesto) {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .editorial-panel {
    padding: 3rem 0 2rem;
    gap: 1rem;
  }

  .editorial-panel--manifesto {
    padding: 0;
  }

  .editorial-panel--intro {
    padding-top: 0;
  }

  .manifesto__photo {
    width: min(54vw, 260px);
  }

  .manifesto__title {
    font-size: clamp(2.75rem, 15vw, 4.4rem);
    gap: 0.12rem;
    letter-spacing: -0.055em;
  }

  .manifesto__line--built,
  .manifesto__line--groove {
    padding-left: 24%;
    padding-right: 0.65rem;
    box-sizing: border-box;
    transform: translateX(calc(var(--drift) * 5vw));
  }

  .manifesto__line--on {
    padding-right: 24%;
    padding-left: 0.65rem;
    box-sizing: border-box;
    transform: translateX(calc(var(--drift) * -5vw));
  }

  .manifesto.is-entering .manifesto__line--built,
  .manifesto.is-entering .manifesto__line--groove {
    transform: translateX(10vw);
  }

  .manifesto.is-entering .manifesto__line--on {
    transform: translateX(-10vw);
  }

  .manifesto.is-arrived .manifesto__line--built,
  .manifesto.is-arrived .manifesto__line--on,
  .manifesto.is-arrived .manifesto__line--groove {
    transform: translateX(0);
  }

  .manifesto__aside,
  .editorial__headline {
    font-size: clamp(1.15rem, 5.2vw, 1.65rem);
  }

  .manifesto__aside {
    margin-top: 1.25rem;
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    max-width: none;
  }

  .editorial-panel__media {
    height: min(52vh, 420px);
  }

  .editorial-panel--visual .editorial-panel__media {
    height: min(58vh, 480px);
  }

  .artist-page__hero {
    grid-template-columns: 1fr;
    grid-template-rows: min(55dvh, 420px) auto;
    min-height: auto;
  }

  .artist-page__body {
    padding: 2rem 1.5rem;
    justify-content: flex-start;
  }

  .artist-page__name {
    margin-bottom: 1rem;
  }

  .artist-page__gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.35rem;
    padding: 0.35rem;
  }

  .artist-page__gallery-item--featured,
  .artist-page__gallery-item--landscape {
    grid-column: span 2;
    aspect-ratio: 4 / 3;
  }

  .artist-page__gallery-item--portrait,
  .artist-page__gallery-item--default {
    grid-column: span 1;
    aspect-ratio: 3 / 4;
  }
}

@media (prefers-reduced-motion: reduce) {
  .unreleased__title.is-celebrating {
    animation: none;
  }

  .unreleased__confetti,
  .unreleased__confetti-piece {
    display: none !important;
    animation: none !important;
  }

  .artist-page__gallery-item,
  .editorial-panel,
  .editorial-grid__cell {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .manifesto__line,
  .manifesto__aside {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .home-about__carousel-slide {
    transition: none !important;
  }

  .home__scroll-label,
  .home__scroll-arrow {
    animation: none;
    opacity: 0.85;
    transform: none;
  }

  .connect,
  .connect__col--socials,
  .connect__col--contact,
  .connect__split {
    transition: none !important;
  }

  .connect__intro.is-typing::after,
  .connect__intro.is-typed::after,
  .manifesto__aside.is-typing::after,
  .manifesto__aside.is-typed::after,
  .home-about__typed.is-typing::after,
  .home-about__typed.is-typed::after {
    animation: none;
  }
}

@media (max-width: 480px) {
  .music {
    padding: 1.25rem 0.75rem 2rem;
  }

  .music__tabs {
    gap: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .music__tab {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }

  .music__grid {
    gap: 0.75rem;
  }

  .music__play {
    height: 2.25rem;
  }

  .music__play-icon {
    width: 1rem;
    height: 1rem;
  }

  .dates__link {
    top: 1.5rem;
    right: 1rem;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }

  .dates__item {
    grid-template-columns: 4.5rem 1fr;
    gap: 1rem;
    padding: 1rem 0;
  }

  .connect {
    width: 100%;
    height: calc(100dvh - var(--nav-height));
    padding: 0;
  }

  .connect__split {
    top: auto;
    bottom: auto;
    left: 10%;
    right: 10%;
    width: auto;
    height: 1px;
    background: linear-gradient(
      to right,
      transparent,
      rgba(245, 245, 245, 0.28),
      transparent
    );
  }

  .connect__col--socials {
    left: 50%;
    top: 28%;
    transform: translate(-50%, -50%);
  }

  .connect.is-split .connect__col--socials {
    left: 50%;
    top: 28%;
    transform: translate(-50%, -50%);
  }

  .connect__col--contact {
    top: 68%;
    left: 50%;
    width: min(100% - 2.5rem, 28rem);
    transform: translate(-50%, -50%) translateY(1rem);
  }

  .connect.is-split .connect__col--contact {
    transform: translate(-50%, -50%) translateY(0);
  }

  .connect__intro {
    font-size: clamp(1.15rem, 5.2vw, 1.65rem);
  }

  .socials {
    gap: 2rem 1.5rem;
    max-width: 320px;
  }

  .socials__icon {
    width: 2.5rem;
    height: 2.5rem;
  }

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

  .artists__name {
    bottom: 2.5rem;
    font-size: clamp(1rem, 3.5vw, 1.5rem);
    letter-spacing: 0.12em;
  }
}
