/*
Theme Name: MOSH Theme
Theme URI: https://mosh.example
Author: MOSH!
Description: Premium dark Drum & Bass label theme for MOSH! from the Baltics.
Version: 1.1.6
Requires PHP: 8.0
Text Domain: mosh-theme
*/

:root {
	--mosh-bg: #030303;
	--mosh-bg-soft: #0b0b0d;
	--mosh-panel: rgba(255, 255, 255, .055);
	--mosh-panel-strong: rgba(255, 255, 255, .1);
	--mosh-gold: #f4b33b;
	--mosh-gold-soft: rgba(244, 179, 59, .16);
	--mosh-text: #fff;
	--mosh-muted: rgba(255, 255, 255, .66);
	--mosh-line: rgba(255, 255, 255, .13);
	--mosh-max: 1320px;
	--mosh-header: 112px;
	--mosh-ease: cubic-bezier(.2, .8, .2, 1);
	color-scheme: dark;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	background: var(--mosh-bg);
}

body {
	margin: 0;
	background:
		radial-gradient(circle at 18% 14%, rgba(244, 179, 59, .08), transparent 28%),
		linear-gradient(180deg, #050505 0%, #09090a 42%, #030303 100%);
	color: var(--mosh-text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

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

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

:focus-visible {
	outline: 2px solid var(--mosh-gold);
	outline-offset: 4px;
}

.mosh-loader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	background: #000;
	transition: opacity .55s var(--mosh-ease), visibility .55s var(--mosh-ease);
}

.mosh-loader.is-hidden {
	visibility: hidden;
	opacity: 0;
}

.mosh-loader__mark {
	position: relative;
	font-size: clamp(3rem, 12vw, 8.5rem);
	font-weight: 950;
	letter-spacing: 0;
	color: var(--mosh-text);
	text-transform: uppercase;
	animation: mosh-pulse 1s var(--mosh-ease) infinite;
}

.mosh-loader__mark::after {
	content: "";
	position: absolute;
	inset: 50% -18% auto;
	height: 2px;
	background: var(--mosh-gold);
	box-shadow: 0 0 26px var(--mosh-gold);
	transform: translateY(-50%);
	animation: mosh-scan .9s steps(4) infinite;
}

.mosh-site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 1000;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 28px clamp(18px, 3vw, 46px);
	pointer-events: none;
}

.mosh-logo,
.mosh-menu-toggle,
.mosh-nav {
	pointer-events: auto;
}

.mosh-logo {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	font-size: clamp(1.55rem, 3vw, 2.5rem);
	font-weight: 950;
	line-height: .9;
	text-transform: uppercase;
	transition: color .25s var(--mosh-ease), filter .25s var(--mosh-ease);
}

.mosh-logo:hover {
	color: var(--mosh-gold);
	filter: drop-shadow(0 0 16px rgba(244, 179, 59, .35));
}

.mosh-logo__image {
	width: auto;
	max-width: 160px;
	max-height: 56px;
	object-fit: contain;
}

.mosh-nav {
	display: grid;
	justify-items: end;
	gap: 20px;
	padding: 4px 0;
	text-align: right;
	transition: opacity .25s var(--mosh-ease), transform .25s var(--mosh-ease), visibility .25s var(--mosh-ease);
}

.mosh-nav ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.mosh-nav a {
	color: rgba(255, 255, 255, .82);
	font-size: .82rem;
	font-weight: 780;
	text-transform: uppercase;
	transition: color .22s var(--mosh-ease), transform .22s var(--mosh-ease);
}

.mosh-nav a:hover,
.mosh-nav a:focus-visible {
	color: var(--mosh-gold);
	transform: translateX(-5px);
}

.mosh-floating-socials {
	position: fixed;
	right: clamp(16px, 2.4vw, 34px);
	bottom: clamp(18px, 3vw, 42px);
	z-index: 1001;
	display: grid;
	gap: 8px;
	pointer-events: auto;
}

.mosh-social {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border: 1px solid var(--mosh-line);
	border-radius: 999px;
	background: rgba(0, 0, 0, .58);
	backdrop-filter: blur(16px);
	color: var(--mosh-muted);
	box-shadow: 0 12px 26px rgba(0, 0, 0, .22);
	transition: border-color .22s var(--mosh-ease), color .22s var(--mosh-ease), background .22s var(--mosh-ease), transform .22s var(--mosh-ease), box-shadow .22s var(--mosh-ease);
}

.mosh-social svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.mosh-social--youtube svg path:first-child,
.mosh-social--facebook svg path,
.mosh-social--tiktok svg path,
.mosh-social--apple-music svg path {
	fill: currentColor;
	stroke: none;
}

.mosh-social--youtube svg path:last-child {
	fill: #050505;
	stroke: none;
}

.mosh-social:hover {
	border-color: var(--mosh-gold);
	color: #000;
	background: var(--mosh-gold);
	box-shadow: 0 0 28px rgba(244, 179, 59, .38);
	transform: translateX(-3px);
}

.mosh-language-switcher {
	display: flex;
	gap: 5px;
	justify-content: flex-end;
}

.mosh-language-switcher a {
	display: grid;
	min-width: 30px;
	height: 26px;
	place-items: center;
	border: 1px solid var(--mosh-line);
	color: var(--mosh-muted);
	font-size: .68rem;
	font-weight: 900;
}

.mosh-language-switcher a:hover,
.mosh-language-switcher a.is-active {
	border-color: var(--mosh-gold);
	background: var(--mosh-gold);
	color: #050505;
	transform: none;
}

.mosh-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 18px;
	border: 1px solid var(--mosh-gold);
	border-radius: 2px;
	background: var(--mosh-gold);
	color: #050505;
	font-size: .82rem;
	font-weight: 900;
	text-transform: uppercase;
	box-shadow: 0 0 0 rgba(244, 179, 59, 0);
	transition: transform .25s var(--mosh-ease), box-shadow .25s var(--mosh-ease), background .25s var(--mosh-ease);
}

.mosh-button:hover {
	background: #ffd16e;
	box-shadow: 0 0 28px rgba(244, 179, 59, .35);
	transform: translateY(-2px);
}

.mosh-button--small {
	min-height: 38px;
	padding-inline: 14px;
	font-size: .75rem;
}

.mosh-button--nav {
	min-height: 38px;
	padding-inline: 16px;
}

.mosh-menu-toggle {
	display: none;
	position: relative;
	z-index: 1004;
	width: 46px;
	height: 46px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--mosh-line);
	border-radius: 999px;
	background: rgba(0, 0, 0, .62);
	backdrop-filter: blur(16px);
	transition: border-color .25s var(--mosh-ease), background .25s var(--mosh-ease), box-shadow .25s var(--mosh-ease);
}

.mosh-menu-toggle span {
	position: absolute;
	display: block;
	width: 18px;
	height: 2px;
	background: var(--mosh-text);
	transition: transform .25s var(--mosh-ease), background .25s var(--mosh-ease);
}

.mosh-menu-toggle span:first-child {
	transform: translateY(-4px);
}

.mosh-menu-toggle span:last-child {
	transform: translateY(4px);
}

.mosh-menu-toggle[aria-expanded="true"] {
	border-color: var(--mosh-gold);
	background: var(--mosh-gold);
	box-shadow: 0 0 28px rgba(244, 179, 59, .35);
}

.mosh-menu-toggle[aria-expanded="true"] span {
	background: #050505;
}

.mosh-menu-toggle[aria-expanded="true"] span:first-child {
	transform: rotate(45deg);
}

.mosh-menu-toggle[aria-expanded="true"] span:last-child {
	transform: rotate(-45deg);
}

.mosh-site-header.is-collapsed .mosh-menu-toggle {
	display: inline-flex;
}

.mosh-site-header.is-collapsed:not(.is-menu-open) .mosh-nav {
	visibility: hidden;
	opacity: 0;
	transform: translateY(-10px);
	pointer-events: none;
}

@media (min-width: 1041px) {
	.mosh-site-header.is-collapsed {
		align-items: flex-start;
	}

	.mosh-site-header.is-collapsed .mosh-nav {
		position: fixed;
		top: 82px;
		right: clamp(18px, 3vw, 46px);
		min-width: 220px;
		padding: 18px;
		border: 1px solid var(--mosh-line);
		background: rgba(0, 0, 0, .86);
		backdrop-filter: blur(18px);
	}
}

.mosh-main {
	min-height: 100vh;
}

.mosh-section {
	position: relative;
	display: grid;
	min-height: 100vh;
	place-items: center;
	padding: 120px clamp(18px, 4vw, 68px);
	overflow: clip;
}

.mosh-section::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image:
		linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
	background-size: 54px 54px;
	mask-image: linear-gradient(180deg, transparent, #000 20%, #000 78%, transparent);
	opacity: .28;
}

.mosh-section__inner {
	width: min(100%, var(--mosh-max));
	margin-inline: auto;
	min-width: 0;
}

.mosh-section__header {
	display: grid;
	max-width: 820px;
	gap: 10px;
	margin: 0 0 clamp(28px, 5vw, 60px);
}

.mosh-section__header p,
.mosh-kicker {
	margin: 0;
	color: var(--mosh-gold);
	font-size: .78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.mosh-section__header h2,
.mosh-content h1,
.mosh-page h1 {
	margin: 0;
	font-size: clamp(2.25rem, 7vw, 7rem);
	line-height: .9;
	text-transform: uppercase;
}

.mosh-section__header span {
	max-width: 620px;
	color: var(--mosh-muted);
	font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.mosh-hero {
	isolation: isolate;
	align-items: end;
	background-color: #000;
	background-position: center;
	background-size: cover;
}

.mosh-video-bg,
.mosh-video-bg iframe,
.mosh-video-bg video,
.mosh-section__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.mosh-video-bg {
	z-index: -3;
	overflow: hidden;
	background: #000;
}

.mosh-video-bg iframe {
	top: 50%;
	left: 50%;
	width: 177.78vh;
	min-width: 100%;
	height: 56.25vw;
	min-height: 100%;
	border: 0;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.mosh-video-bg video {
	object-fit: cover;
	border: 0;
	pointer-events: none;
}

.mosh-section__overlay {
	z-index: -2;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, .43), rgba(0, 0, 0, .25) 48%, rgba(0, 0, 0, .36)),
		linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(3, 3, 3, .52) 96%);
}

.mosh-hero__content {
	width: min(100%, 1120px);
	margin-right: auto;
	padding-bottom: clamp(38px, 7vh, 88px);
}

.mosh-hero h1 {
	max-width: 1080px;
	margin: 12px 0 18px;
	font-size: clamp(3.2rem, 11vw, 10.8rem);
	line-height: .82;
	text-transform: uppercase;
	text-wrap: balance;
	text-shadow: 0 0 34px rgba(0, 0, 0, .75);
}

.mosh-hero__content > p:last-child {
	max-width: 780px;
	margin: 0;
	color: rgba(255, 255, 255, .78);
	font-size: clamp(1.05rem, 2vw, 1.55rem);
	font-weight: 620;
}

.mosh-scroll-cue {
	position: absolute;
	right: clamp(22px, 4vw, 72px);
	bottom: 36px;
	width: 22px;
	height: 48px;
	border: 1px solid rgba(255, 255, 255, .45);
	border-radius: 999px;
}

.mosh-scroll-cue::after {
	content: "";
	position: absolute;
	top: 8px;
	left: 50%;
	width: 4px;
	height: 10px;
	border-radius: 999px;
	background: var(--mosh-gold);
	transform: translateX(-50%);
	animation: mosh-scroll 1.5s infinite;
}

.mosh-events-list {
	display: grid;
	gap: 14px;
}

.mosh-event-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 18px;
	align-items: end;
	padding: clamp(18px, 2.5vw, 30px);
	border-top: 1px solid var(--mosh-line);
	background: linear-gradient(90deg, rgba(255, 255, 255, .055), transparent);
	transition: background .25s var(--mosh-ease), transform .25s var(--mosh-ease), border-color .25s var(--mosh-ease);
}

.mosh-event-card:hover {
	border-color: rgba(244, 179, 59, .65);
	background: linear-gradient(90deg, rgba(244, 179, 59, .12), rgba(255, 255, 255, .03));
	transform: translateX(6px);
}

.mosh-event-card__main {
	display: grid;
	gap: 8px;
}

.mosh-event-card time {
	color: var(--mosh-gold);
	font-size: .86rem;
	font-weight: 900;
	text-transform: uppercase;
}

.mosh-event-card h3,
.mosh-track-card h3,
.mosh-dj-card h3,
.mosh-product-card h3 {
	margin: 0;
	font-size: clamp(1.25rem, 2vw, 2rem);
	line-height: 1;
	text-transform: uppercase;
}

.mosh-event-card p,
.mosh-track-card p,
.mosh-dj-card p,
.mosh-product-card p {
	margin: 0;
	color: var(--mosh-muted);
}

.mosh-event-card__artists {
	grid-column: 1 / -1;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	color: var(--mosh-muted);
	font-size: .92rem;
	text-transform: uppercase;
}

.mosh-event-card__artists a,
.mosh-track-card p a,
.mosh-dj-card h3 a,
.mosh-link-row a {
	color: var(--mosh-gold);
}

.mosh-carousel {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	overflow: hidden;
}

.mosh-release-catalog {
	display: grid;
	gap: 22px;
	min-width: 0;
}

.mosh-release-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.mosh-release-filters select,
.mosh-release-vibes button {
	min-height: 38px;
	border: 1px solid var(--mosh-line);
	border-radius: 0;
	background: rgba(0, 0, 0, .56);
	color: var(--mosh-text);
	padding: 0 12px;
	font-size: .78rem;
	font-weight: 850;
	text-transform: uppercase;
}

.mosh-release-vibes {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.mosh-release-vibes button {
	cursor: pointer;
}

.mosh-release-vibes button:hover,
.mosh-release-vibes button.is-active {
	border-color: var(--mosh-gold);
	background: var(--mosh-gold);
	color: #050505;
}

.mosh-carousel__track {
	display: flex;
	gap: clamp(14px, 2vw, 24px);
	max-width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 0 0 18px;
	overscroll-behavior-x: contain;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x mandatory;
	scroll-padding-inline: 1px;
	scrollbar-color: var(--mosh-gold) transparent;
}

.mosh-track-card,
.mosh-artist-card,
.mosh-dj-card,
.mosh-worked-card,
.mosh-product-card {
	position: relative;
	min-width: 0;
	border: 1px solid var(--mosh-line);
	background: rgba(255, 255, 255, .045);
	transition: border-color .25s var(--mosh-ease), transform .25s var(--mosh-ease), background .25s var(--mosh-ease);
}

.mosh-track-card,
.mosh-product-card {
	display: grid;
	flex: 0 0 clamp(230px, 28vw, 360px);
	gap: 12px;
	padding: 12px;
	scroll-snap-align: start;
}

.mosh-track-card.is-filtered-out,
.mosh-track-card[hidden] {
	display: none !important;
}

.mosh-track-card__status {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
	min-height: 28px;
}

.mosh-release-status {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 0 9px;
	border: 1px solid rgba(244, 179, 59, .7);
	background: rgba(244, 179, 59, .12);
	color: var(--mosh-gold);
	font-size: .66rem;
	font-weight: 920;
	line-height: 1;
	text-transform: uppercase;
}

.mosh-release-status--latest {
	background: var(--mosh-gold);
	color: #050505;
}

.mosh-release-status--unreleased {
	border-color: rgba(255, 255, 255, .28);
	background: rgba(255, 255, 255, .075);
	color: rgba(255, 255, 255, .88);
}

.mosh-track-card:hover,
.mosh-artist-card:hover,
.mosh-dj-card:hover,
.mosh-worked-card:hover,
.mosh-product-card:hover {
	border-color: var(--mosh-gold);
	background: rgba(244, 179, 59, .09);
	transform: translateY(-5px);
}

.mosh-track-card__cover,
.mosh-artist-card img,
.mosh-track-card img,
.mosh-worked-card img,
.mosh-product-card img,
.mosh-image-placeholder {
	aspect-ratio: 1;
	width: 100%;
	object-fit: cover;
	background: linear-gradient(135deg, #151515, #050505);
}

.mosh-image-placeholder {
	display: grid;
	place-items: center;
	padding: 18px;
	color: rgba(255, 255, 255, .36);
	font-size: .78rem;
	font-weight: 800;
	text-align: center;
	text-transform: uppercase;
}

.mosh-artist-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(14px, 2vw, 24px);
}

.mosh-grid-heading {
	grid-column: 1 / -1;
	margin: 18px 0 0;
	color: var(--mosh-gold);
	font-size: .82rem;
	font-weight: 920;
	text-transform: uppercase;
}

.mosh-artist-card {
	display: grid;
	overflow: hidden;
}

.mosh-artist-card__main {
	position: relative;
	display: grid;
	min-height: 100%;
}

.mosh-artist-card__main::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, .82));
}

.mosh-artist-card__main > span {
	position: absolute;
	right: 16px;
	bottom: 15px;
	left: 16px;
	z-index: 1;
	font-size: clamp(1.1rem, 1.5vw, 1.55rem);
	font-weight: 920;
	line-height: 1;
	text-transform: uppercase;
}

.mosh-artist-card.is-bookable .mosh-artist-card__main > span {
	bottom: 52px;
}

.mosh-artist-card__actions {
	position: absolute;
	right: 10px;
	bottom: 10px;
	left: 10px;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	pointer-events: none;
}

.mosh-booking-badge,
.mosh-booking-cta {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 9px;
	border: 1px solid rgba(244, 179, 59, .58);
	background: rgba(0, 0, 0, .68);
	color: var(--mosh-gold);
	font-size: .65rem;
	font-weight: 920;
	text-transform: uppercase;
}

.mosh-booking-cta {
	background: var(--mosh-gold);
	color: #050505;
	pointer-events: auto;
}

.mosh-booking-cta:hover {
	background: #ffd16e;
}

.mosh-track-card__vibes {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}

.mosh-track-card__popularity {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 7px 10px;
	align-items: center;
	color: rgba(255, 255, 255, .68);
	font-size: .68rem;
	font-weight: 850;
	text-transform: uppercase;
}

.mosh-track-card__popularity strong {
	color: var(--mosh-gold);
	font-size: .72rem;
}

.mosh-track-card__popularity i {
	grid-column: 1 / -1;
	display: block;
	height: 3px;
	background: linear-gradient(90deg, var(--mosh-gold) var(--mosh-popularity), rgba(255, 255, 255, .12) var(--mosh-popularity));
}

.mosh-dj-grid,
.mosh-store-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(14px, 2vw, 24px);
}

.mosh-dj-card {
	display: grid;
	gap: 12px;
	padding: 12px;
}

.mosh-video {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #000;
}

.mosh-video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.mosh-demo-section {
	background:
		linear-gradient(135deg, rgba(244, 179, 59, .11), transparent 36%),
		#050505;
}

.mosh-demo-layout {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	gap: clamp(28px, 5vw, 80px);
	align-items: start;
	min-width: 0;
}

.mosh-demo-layout .mosh-section__header {
	margin: 0;
	min-width: 0;
}

.mosh-demo-copy {
	display: grid;
	gap: 18px;
	min-width: 0;
	max-width: 800px;
	font-size: clamp(1.1rem, 2vw, 1.65rem);
	line-height: 1.35;
}

.mosh-demo-copy p {
	margin: 0;
}

.mosh-demo-embed {
	width: 100%;
	margin-top: 28px;
	max-width: 100%;
	min-width: 0;
	overflow-x: auto;
}

.mosh-demo-embed iframe {
	display: block;
	width: 100% !important;
	max-width: 600px;
	height: 800px;
	max-height: 82vh;
	border: 0;
}

.mosh-worked-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
}

.mosh-worked-card {
	display: grid;
	gap: 9px;
	padding: 10px;
	color: var(--mosh-text);
	-webkit-touch-callout: none;
	user-select: none;
}

.mosh-worked-card img {
	pointer-events: none;
	-webkit-user-drag: none;
	user-select: none;
}

.mosh-worked-card strong {
	font-size: .96rem;
	text-transform: uppercase;
}

.mosh-worked-card span {
	color: var(--mosh-muted);
	font-size: .82rem;
}

.mosh-badge {
	display: inline-flex;
	margin: 4px 4px 0 0;
	padding: 3px 7px;
	border: 1px solid rgba(244, 179, 59, .42);
	color: var(--mosh-gold);
	font-size: .66rem;
	font-weight: 820;
	text-transform: uppercase;
}

.mosh-product-card {
	align-content: start;
}

.mosh-empty {
	margin: 0;
	color: var(--mosh-muted);
}

.mosh-footer {
	display: grid;
	gap: 22px;
	padding: 28px clamp(18px, 4vw, 68px);
	border-top: 1px solid var(--mosh-line);
	background: #030303;
	color: var(--mosh-muted);
	font-size: .9rem;
}

.mosh-footer strong {
	color: var(--mosh-text);
	margin-right: 8px;
}

.mosh-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 10px;
	color: rgba(255, 255, 255, .5);
	font-size: .72rem;
	font-weight: 780;
	text-transform: uppercase;
}

.mosh-footer__legal a:hover {
	color: var(--mosh-gold);
}

[data-reveal] {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .75s var(--mosh-ease), transform .75s var(--mosh-ease);
}

[data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

.mosh-page,
.mosh-page-section {
	min-height: auto;
	padding-top: 150px;
}

.mosh-content {
	max-width: 760px;
	color: rgba(255, 255, 255, .78);
}

.mosh-content h1,
.mosh-content h2,
.mosh-content h3 {
	color: var(--mosh-text);
	line-height: 1;
	text-transform: uppercase;
}

.mosh-artist-single__grid {
	display: grid;
	grid-template-columns: minmax(260px, .75fr) minmax(0, 1fr);
	gap: clamp(28px, 5vw, 80px);
	align-items: center;
}

.mosh-artist-single__photo img,
.mosh-artist-single__photo .mosh-image-placeholder {
	aspect-ratio: 1;
	width: 100%;
	object-fit: cover;
	border: 1px solid var(--mosh-line);
}

.mosh-artist-single h1 {
	margin: 8px 0 8px;
	font-size: clamp(3rem, 9vw, 9rem);
	line-height: .82;
	text-transform: uppercase;
}

.mosh-real-name {
	margin: 0 0 24px;
	color: var(--mosh-muted);
	font-size: 1.1rem;
}

.mosh-artist-booking {
	display: grid;
	gap: 4px;
	margin-top: 28px;
	padding-top: 22px;
	border-top: 1px solid var(--mosh-line);
}

.mosh-artist-booking strong {
	color: var(--mosh-gold);
	text-transform: uppercase;
}

.mosh-artist-booking a {
	color: var(--mosh-text);
	font-weight: 760;
}

.mosh-artist-booking a:hover {
	color: var(--mosh-gold);
}

.mosh-link-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
	font-size: .88rem;
	font-weight: 820;
	text-transform: uppercase;
}

.mosh-embed {
	margin-top: 28px;
}

.mosh-embed iframe {
	width: 100%;
	max-width: 720px;
	border: 0;
}

.mosh-booking-section {
	background: linear-gradient(135deg, rgba(244, 179, 59, .08), transparent 34%), #040404;
}

.mosh-booking-layout {
	display: grid;
	grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
	gap: clamp(28px, 5vw, 78px);
	align-items: start;
}

.mosh-booking-layout .mosh-section__header {
	margin: 0;
}

.mosh-booking-form {
	display: grid;
	gap: 16px;
	padding: clamp(18px, 3vw, 30px);
	border: 1px solid var(--mosh-line);
	background: rgba(255, 255, 255, .045);
}

.mosh-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.mosh-booking-form label {
	display: grid;
	gap: 7px;
	color: var(--mosh-muted);
	font-size: .78rem;
	font-weight: 850;
	text-transform: uppercase;
}

.mosh-booking-form input,
.mosh-booking-form textarea {
	width: 100%;
	border: 1px solid var(--mosh-line);
	border-radius: 0;
	background: rgba(0, 0, 0, .54);
	color: var(--mosh-text);
	padding: 13px 14px;
	outline: 0;
	transition: border-color .22s var(--mosh-ease), box-shadow .22s var(--mosh-ease), background .22s var(--mosh-ease);
}

.mosh-booking-form textarea {
	resize: vertical;
}

.mosh-booking-form input:focus,
.mosh-booking-form textarea:focus {
	border-color: var(--mosh-gold);
	background: rgba(0, 0, 0, .72);
	box-shadow: 0 0 0 3px rgba(244, 179, 59, .12);
}

.mosh-form-message {
	margin: 0;
	padding: 12px 14px;
	border-left: 2px solid var(--mosh-gold);
	background: rgba(244, 179, 59, .1);
	color: var(--mosh-text);
	font-weight: 720;
}

.woocommerce,
.woocommerce-page {
	background: var(--mosh-bg);
	color: var(--mosh-text);
}

.woocommerce ul.products li.product,
.woocommerce div.product,
.woocommerce-cart-form,
.woocommerce-checkout,
.woocommerce-order {
	border: 1px solid var(--mosh-line);
	background: rgba(255, 255, 255, .045);
	padding: 18px;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .button {
	border-radius: 2px;
	background: var(--mosh-gold);
	color: #030303;
	font-weight: 900;
	text-transform: uppercase;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce .button:hover {
	background: #ffd16e;
	color: #030303;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price {
	color: var(--mosh-gold);
}

.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select {
	border: 1px solid var(--mosh-line);
	background: #080808;
	color: var(--mosh-text);
}

@keyframes mosh-pulse {
	0%, 100% {
		text-shadow: 0 0 0 rgba(244, 179, 59, 0);
		transform: scale(1);
	}
	50% {
		text-shadow: 0 0 38px rgba(244, 179, 59, .48);
		transform: scale(1.025);
	}
}

@keyframes mosh-scan {
	0% {
		transform: translateY(-50%) translateX(-16px);
		opacity: 0;
	}
	45% {
		opacity: 1;
	}
	100% {
		transform: translateY(-50%) translateX(16px);
		opacity: 0;
	}
}

@keyframes mosh-scroll {
	0% {
		transform: translate(-50%, 0);
		opacity: 1;
	}
	100% {
		transform: translate(-50%, 18px);
		opacity: 0;
	}
}

@media (min-width: 1180px) and (max-height: 900px) {
	.mosh-section {
		padding-top: 90px;
		padding-bottom: 82px;
	}

	.mosh-section__header {
		margin-bottom: 34px;
	}

	.mosh-hero h1 {
		font-size: clamp(4rem, 9vw, 8.6rem);
	}
}

@media (max-width: 1040px) {
	.mosh-site-header {
		align-items: center;
		padding: 18px;
		background: linear-gradient(180deg, rgba(0, 0, 0, .78), transparent);
	}

	.mosh-menu-toggle {
		display: inline-flex;
		flex-direction: column;
		position: fixed;
		top: 18px;
		right: 18px;
		z-index: 1004;
	}

	.mosh-nav {
		position: fixed;
		inset: 0 0 0 auto;
		z-index: 1002;
		width: min(86vw, 380px);
		align-content: start;
		justify-items: start;
		gap: 26px;
		padding: 92px 26px 26px;
		background: rgba(0, 0, 0, .94);
		border-left: 1px solid var(--mosh-line);
		text-align: left;
		transform: translateX(100%);
		transition: transform .34s var(--mosh-ease);
	}

	.mosh-nav.is-open {
		transform: translateX(0);
	}

	.mosh-nav ul {
		gap: 16px;
	}

	.mosh-nav a {
		font-size: 1rem;
	}

	.mosh-event-card,
	.mosh-demo-layout,
	.mosh-artist-single__grid,
	.mosh-booking-layout {
		grid-template-columns: 1fr;
	}

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

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

	.mosh-worked-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	.mosh-section {
		min-height: auto;
		padding: 104px 18px 72px;
	}

	.mosh-hero {
		min-height: 100svh;
	}

	.mosh-hero h1 {
		font-size: clamp(3rem, 17vw, 5.5rem);
	}

	.mosh-section__header h2 {
		font-size: clamp(2.35rem, 14vw, 4.4rem);
	}

	#music {
		overflow: hidden;
	}

	.mosh-carousel__track {
		margin-inline: -1px;
		padding-inline: 1px;
		scroll-snap-type: x mandatory;
	}

	.mosh-track-card {
		flex-basis: min(82vw, 320px);
		max-width: min(82vw, 320px);
	}

	.mosh-track-card:hover {
		transform: none;
	}

	.mosh-release-filters,
	.mosh-release-filters select,
	.mosh-release-vibes {
		width: 100%;
	}

	.mosh-release-vibes button {
		flex: 1 1 auto;
	}

	.mosh-artist-grid,
	.mosh-dj-grid,
	.mosh-store-grid,
	.mosh-worked-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.mosh-dj-grid,
	.mosh-store-grid {
		grid-template-columns: 1fr;
	}

	.mosh-form-grid {
		grid-template-columns: 1fr;
	}

	.mosh-demo-layout .mosh-section__header h2 {
		font-size: clamp(2rem, 12vw, 3.35rem);
		overflow-wrap: anywhere;
		word-break: break-word;
	}

	.mosh-demo-embed iframe {
		max-width: 100%;
	}

	.mosh-footer {
		align-items: flex-start;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
	}
}
