@font-face {
	font-family: "Museo";
	src:url(../fonts/MUSEOSANSCYRL.OTF);
}
@font-face {
	font-family: "Break";
	src:url(../fonts/BreakRegular.ttf);
}
html {
	margin: 0;
	padding: 0;
	width: 100%;
	min-height: 100%;
}
body {
	margin: 0;
	position: relative;
	padding: 0;
	width: 100%;
	min-height: 100%;
	font-family: "Museo", Arial, sans-serif;
	
	background-color: #000;
	background-size: cover;
	background-attachment: fixed;
	padding-bottom: 110px;
}
.body__bg {
	background: url(../img/jh.com.new.jpg) center 0 no-repeat;
	position: fixed;
	background-size: cover;
	top: 0; bottom: 0; right: 0; left: 0;

}
.layout {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.7);
}

/* Header + burger + offcanvas navigation */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10010;
	padding: 12px 14px;
	pointer-events: none;
}
.header__inner {
	pointer-events: auto;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	opacity: 1;
	transform: translateY(0);
	transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
	background: transparent;
	border: 1px solid transparent;
	border-radius: 16px;
	backdrop-filter: none;
	padding: 10px 12px;
}
.header.is-scrolled .header__inner {
	background: rgba(0, 0, 0, 0.55);
	border-color: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(8px);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
	justify-content: space-between;
}
.header__logo {
	display: none;
	width: 52px;
	height: 52px;
	border-radius: 999px;
	font-size: 0;
	background: url(../img/jiminyhop-logo.svg) center center no-repeat;
	background-size: 46px;
	box-shadow: 0 0 18px rgba(204, 68, 0, 0.25);
}
.header.is-scrolled .header__logo {
	display: block;
}
.header__right {
	display: flex;
	align-items: center;
	gap: 10px;
}
.burger {
	pointer-events: auto;
	width: 54px;
	height: 54px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(0, 0, 0, 0.55);
	backdrop-filter: blur(6px);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	flex-direction: column;
}
.burger__line {
	width: 24px;
	height: 2px;
	background: rgba(204, 68, 0, 0.95);
	box-shadow: 0 0 12px rgba(204, 68, 0, 0.25);
}
.navOverlay {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 10005;
	background: rgba(0, 0, 0, 0.55);
	backdrop-filter: blur(4px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 220ms ease;
}
.navDrawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(520px, 92vw);
	z-index: 10006;
	background: rgba(0, 0, 0, 0.88);
	border-left: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(10px);
	transform: translateX(110%);
	transition: transform 320ms ease;
}
.navDrawer__close {
	position: absolute;
	top: 16px;
	right: 16px;
	height: 52px;
	width: 52px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(255, 255, 255, 0.08);
	color: #DAEAEF;
	cursor: pointer;
	font-size: 18px;
}
.navDrawer__close:hover {
	background: rgba(204, 68, 0, 0.14);
	border-color: rgba(204, 68, 0, 0.25);
}
.navOverlay.is-open {
	opacity: 1;
	pointer-events: auto;
}
.navDrawer.is-open {
	transform: translateX(0);
}
.navDrawer__nav {
	padding: 110px 36px 26px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

/* When nav is open, hide header */
body.nav-open .header {
	opacity: 0;
	pointer-events: none;
}
.navDrawer__link {
	text-decoration: none;
	/* Break doesn't include Cyrillic, so keep RU/EN consistent */
	font-family: "Break","Museo", Arial, sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 6px;
	font-size: 2.2rem;
	color: rgba(204, 68, 0, 0.95);
	text-shadow: 0 0 18px rgba(204, 68, 0, 0.25);
}
.navDrawer__link:hover {
	color: rgba(255, 255, 255, 0.95);
}
.navDrawer__socials {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 26px 36px 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	align-items: center;
}
.navDrawer__social {
	height: 72px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 42px;
}
.navDrawer__social:hover {
	background-color: rgba(204, 68, 0, 0.12);
	border-color: rgba(204, 68, 0, 0.25);
}
.navDrawer__social--fb {
	background-image: url(../img/socials/facebook.svg);
}
.navDrawer__social--inst {
	background-image: url(../img/socials/instagram.svg);
}
.navDrawer__social--tw {
	background-image: url(../img/socials/twitter.svg);
}
.navDrawer__social--sc {
	background-image: url(../img/socials/soundcloud.svg);
}
a {
	color: #DAEAEF;
}
/*
Helpers
*/
.clearfix::after {
	content: '';
	display: table;
	clear: both;
}
.is-hidden {
	display: none;
}
.section {
	background-color: rgba(0, 0, 0, 0.2);
	margin-bottom: 30px;
	padding: 30px;
	transform: translate3d(0, 10px, 0);
	opacity: 0;
}
.section--without-padding {
	padding-left: 0;
	padding-right: 0;
}
.fadeInUp {
	transform: translate3d(0, 0, 0);
	opacity: 1;
	transition: all 1s ease-in-out;
}
/*
End Helpers
*/
.content {
	text-align: center;
	color: #eee;
	padding-top: 30px;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;

	position: relative;
}
.story__text {
	letter-spacing: 3px;
	margin-top: 0;
	line-height: 2rem;
	color: #ccc;
	font-size: 16px;
	margin-bottom: 20px;
}
.hero {
	padding-top: 100px;
	padding-bottom: 100px;
	position: relative;
}
.hero__title {
	display: inline-block;
	margin-left: auto;
	margin-right: auto;
	text-decoration: none;
	color: inherit;
	margin-top: 0;
	font-size: 3.5rem;
	letter-spacing: 10px;
	text-transform: uppercase;
	font-family: Break;
	text-shadow: 0px 0px 20px rgb(204, 68, 0);

	animation-name: blinkTitle;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}

@keyframes blinkTitle {
	from { text-shadow: 0px 0px 10px transparent; }
	to { text-shadow: 0px 0px 10px rgb(204, 68, 0); color: rgb(204, 68, 0); }
}

.logo {
	position: relative;
	display: block;
	width: 100px;
	height: 100px;
	
	font-size: 0;
	perspective: 1000px;
	
}
.logo__front, .logo__back {
	position: absolute;
	background: url(../img/jiminyhop-logo.svg) center center no-repeat;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	transition: transform 1s ease-in-out;
	backface-visibility: hidden;
}

.logo__back {
	transform: rotateY(180deg);
	border-radius: 50%;
	box-shadow: 0 0 30px #fff;
}

.logo:hover .logo__front {
	transform: rotateY(180deg);
	transition: transform 1s ease-in-out;
}

.logo:hover .logo__back {
	transform: rotateY(0deg);
}

.hero__logo {
	position: absolute;
	left: 30px;
	top: 30px;
}
.langSwitch {
	display: inline-flex;
	gap: 8px;
	background: rgba(0, 0, 0, 0.45);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	padding: 6px;
	backdrop-filter: blur(6px);
}
.langSwitch__btn {
	border: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.85);
	font-family: Break;
	letter-spacing: 2px;
	padding: 8px 12px;
	border-radius: 999px;
	cursor: pointer;
	font-size: 16px;
}
.langSwitch__btn.is-active {
	background: rgba(204, 68, 0, 0.22);
	color: rgba(255, 255, 255, 0.95);
	box-shadow: 0 0 16px rgba(204, 68, 0, 0.25);
}

/* Use header language switch (avoid duplicate in hero) */
.hero .langSwitch {
	display: none;
}
.footer {
	position: relative;
	padding-top: 50px;
	padding-bottom: 50px;
}

.footer__logo {
	margin-left: auto;
	margin-right: auto;
}
.footer__copyright {
	font-size: 10px;
	color: #fff;
	text-align: center;
}
.hero__text {
	max-width: 71%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0;
}
.title {
	box-sizing: border-box;
	margin-top: 0;
	margin-bottom: 18px;
	margin-left: auto;
	margin-right: auto;
	max-width: 1100px;
	padding: 22px 20px 18px;
	color: rgba(204, 68, 0, 0.95);
	background: rgba(0, 0, 0, 0.75);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	text-transform: uppercase;
	letter-spacing: 6px;
	font-size: 1.35rem;
	text-shadow: 0 0 18px rgba(204, 68, 0, 0.75);
}
.title::after {
	content: '';
	display: block;
	width: 120px;
	height: 2px;
	margin: 14px auto 0;
	background: rgba(204, 68, 0, 0.8);
	box-shadow: 0 0 14px rgba(204, 68, 0, 0.35);
}
.tracks__title {
	letter-spacing: 3px;
}
.tracks__list {
	text-align: left;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}
.tracks__ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.tracks__item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.tracks__btn {
	width: 100%;
	text-align: left;
	padding: 14px 12px;
	background: transparent;
	border: 0;
	color: #DAEAEF;
	cursor: pointer;
	letter-spacing: 1px;
	font-family: inherit;
	font-size: 14px;
}
.tracks__btn:hover {
	background: rgba(20, 0, 0, 0.35);
}
.tracks__item--active .tracks__btn {
	background: rgba(204, 68, 0, 0.15);
	box-shadow: inset 0 0 0 1px rgba(204, 68, 0, 0.35);
}
.tracks__num {
	color: rgba(204, 68, 0, 0.9);
}
.tracks__name {
	color: #ddd;
}

/* Fixed player */
.player {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(6px);
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.player__inner {
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	display: grid;
	grid-template-columns: 1.3fr auto 2fr 220px;
	gap: 12px;
	align-items: center;
	padding: 12px 14px;
	position: relative;
}
.player__collapse {
	display: none;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(255, 255, 255, 0.08);
	height: 54px;
	width: 54px;
	border-radius: 999px;
	cursor: pointer;
}
.player__collapse:hover {
	background: rgba(255, 255, 255, 0.14);
}
.player__collapseIcon {
	display: block;
	width: 0;
	height: 0;
	margin-left: auto;
	margin-right: auto;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 10px solid rgba(204, 68, 0, 0.95);
	filter: drop-shadow(0 0 10px rgba(204, 68, 0, 0.25));
	transform: rotate(0deg);
	transition: transform 200ms ease;
}
.player.player--collapsed .player__collapseIcon {
	transform: rotate(180deg);
}
.player__title {
	color: #eee;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-right: 10px;
	letter-spacing: 1px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.player__controls {
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: center;
}
.player__btn {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #DAEAEF;
	height: 60px;
	min-width: 60px;
	border-radius: 30px;
	cursor: pointer;
	font-family: inherit;
	font-size: 18px;
}

.player__btn--no-bg {
	border: none;
	background: transparent;
}
.player__btn--primary {
	border-color: rgba(204, 68, 0, 0.35);
	background: rgba(204, 68, 0, 0.18);
}
.player__btn:hover {
	background: rgba(255, 255, 255, 0.14);
}
.player__icon {
	width: 20px;
	height: 20px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.player__btn--primary .player__icon {
	width: 20px;
	height: 20px;
}
.player__timeline {
	display: grid;
	grid-template-columns: 52px 1fr 52px;
	gap: 10px;
	align-items: center;
}
.player__time {
	color: #bbb;
	font-size: 12px;
	letter-spacing: 1px;
	text-align: center;
}
.player__seek {
	width: 100%;
	cursor: pointer;
}
.player__volume {
	display: grid;
	grid-template-columns: 44px 1fr;
	gap: 10px;
	align-items: center;
}
.player__volLabel {
	color: #bbb;
	font-size: 12px;
	letter-spacing: 2px;
	text-align: right;
}
.player__vol {
	width: 100%;
}

input[type="range"] {
	-webkit-appearance: none;
	appearance: none;
	height: 8px;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	outline: none;
	cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: rgba(204, 68, 0, 0.95);
	border: 2px solid rgba(255, 255, 255, 0.65);
	box-shadow: 0 0 12px rgba(204, 68, 0, 0.35);
	cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: rgba(204, 68, 0, 0.95);
	border: 2px solid rgba(255, 255, 255, 0.65);
	box-shadow: 0 0 12px rgba(204, 68, 0, 0.35);
	cursor: pointer;
}
input[type="range"]::-moz-range-track {
	height: 8px;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 999px;
}

@media (max-width: 960px) {
	body {
		padding-bottom: 140px;
	}
	.player__inner {
		grid-template-columns: 1fr;
		gap: 10px;
		padding-bottom: 30px;
	}
	/* Title → progress (full width) → transport buttons */
	.player__meta {
		order: 1;
		width: 100%;
		min-width: 0;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.player__collapse {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex: 0 0 54px;
		width: 54px;
		height: 54px;
		align-self: center;
	}
	.player__timeline {
		order: 2;
		width: 100%;
		min-width: 0;
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto;
		column-gap: 10px;
		row-gap: 8px;
		align-items: center;
	}
	.player__seek {
		grid-column: 1 / 3;
		grid-row: 1;
	}
	.player__time {
		grid-row: 2;
		font-size: 11px;
	}
	#timeCurrent {
		grid-column: 1;
		text-align: left;
	}
	#timeDuration {
		grid-column: 2;
		text-align: right;
	}
	.player__controls {
		order: 3;
		justify-content: center;
	}
	.player__volume {
		display: none;
	}

	/* Collapsed mobile player */
	.player.player--collapsed .player__inner {
		gap: 12px;
		padding-bottom: 14px;
	}
	.player.player--collapsed .player__timeline {
		display: none;
	}
	.player.player--collapsed .player__controls {
		display: none;
	}
	.player.player--collapsed .player__meta {
		padding-right: 70px; /* space for collapse button */
	}
}
.video__title {
	font-size: 16px;
	letter-spacing: 3px;
}
.video__carousel {
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 6px;
	padding-right: 6px;
}
.videoCard {
	margin: 0;
}
.videoCard__media {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
	background: rgba(255, 255, 255, 0.06);
	aspect-ratio: 16 / 9;
	max-height: 70vh;
}
.videoCard__video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: #000;
}
.videoCard--portrait .videoCard__media {
	aspect-ratio: 9 / 16;
	max-height: 78vh;
}
.videoCard--portrait .videoCard__video {
	object-fit: contain;
	background: #000;
}
.videoCard__caption {
	margin-top: 10px;
	margin-bottom: 0;
	text-align: left;
	font-size: 12px;
	color: #ccc;
	letter-spacing: 2px;
}

.swiper-button-prev,
.swiper-button-next {
	color: rgba(204, 68, 0, 0.9);
}
.swiper-button-prev::after,
.swiper-button-next::after {
	font-size: 22px;
	text-shadow: 0 0 12px rgba(0, 0, 0, 0.75);
}
.swiper-scrollbar {
	background: rgba(255, 255, 255, 0.12);
}
.swiper-scrollbar-drag {
	background: rgba(204, 68, 0, 0.75);
}
.contact {
	min-height: 300px;
}
.contactForm__container {
	box-sizing: border-box;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 16px;
	align-items: stretch;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
}
.contactForm__container > * {
	min-width: 0;
}
.contactForm__info {
	box-sizing: border-box;
	border-radius: 16px;
	background: rgba(0, 0, 0, 0.75);
	border: 1px solid rgba(255, 255, 255, 0.12);
	padding: 24px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.contactForm__text {
	margin: 0;
	font-family: Break;
	text-transform: uppercase;
	letter-spacing: 6px;
	color: rgba(204, 68, 0, 0.95);
	text-shadow: 0 0 18px rgba(204, 68, 0, 0.75);
	line-height: 1.5rem;
}
.contactForm {
	box-sizing: border-box;
	width: 100%;
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
	padding: 24px 20px;
	background: rgba(0, 0, 0, 0.75);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
}

.contactForm__row {
	margin-bottom: 14px;
	text-align: left;
}
.contactForm__label {
	display: block;
	margin-bottom: 6px;
	color: rgba(255, 255, 255, 0.85);
	letter-spacing: 2px;
	font-size: 12px;
	text-transform: uppercase;
}
.contactForm__input,
.contactForm__textarea {
	box-sizing: border-box;
	width: 100%;
	padding: 12px 12px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(0, 0, 0, 0.4);
	color: #DAEAEF;
	font-family: inherit;
	font-size: 14px;
	letter-spacing: 1px;
	outline: none;
}
.contactForm__textarea {
	resize: vertical;
	min-height: 130px;
}
.contactForm__input:focus,
.contactForm__textarea:focus {
	border-color: rgba(204, 68, 0, 0.55);
	box-shadow: 0 0 0 3px rgba(204, 68, 0, 0.18);
}
.contactForm__submit {
	width: 100%;
	min-height: 62px;
	border-radius: 14px;
	border: 1px solid rgba(204, 68, 0, 0.32);
	background: rgba(204, 68, 0, 0.18);
	color: rgba(255, 255, 255, 0.95);
	font-family: Break, "Museo";
	letter-spacing: 6px;
	text-transform: uppercase;
	font-size: 1.1rem;
	cursor: pointer;
}
.contactForm__submit:hover {
	background: rgba(204, 68, 0, 0.28);
	border-color: rgba(204, 68, 0, 0.5);
}
.contactForm__gotcha {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
}

/* Modal */
.modal {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 10020;
}
.modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(6px);
}
.modal__inner {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: min(560px, calc(100% - 28px));
	border-radius: 18px;
	background: rgba(0, 0, 0, 0.88);
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65);
	padding: 22px 22px 18px;
	text-align: center;
}
.modal__close {
	position: absolute;
	right: 14px;
	top: 14px;
	height: 44px;
	width: 44px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(255, 255, 255, 0.08);
	color: #DAEAEF;
	cursor: pointer;
	font-size: 18px;
}
.modal__title {
	font-family: Break;
	letter-spacing: 6px;
	text-transform: uppercase;
	color: rgba(204, 68, 0, 0.95);
	font-size: 1.6rem;
	margin-bottom: 10px;
	text-shadow: 0 0 18px rgba(204, 68, 0, 0.25);
}
.modal__text {
	margin-bottom: 18px;
}
.modal__ok {
	min-height: 54px;
	width: min(240px, 100%);
	border-radius: 14px;
	border: 1px solid rgba(204, 68, 0, 0.32);
	background: rgba(204, 68, 0, 0.18);
	color: rgba(255, 255, 255, 0.95);
	font-family: Break;
	letter-spacing: 6px;
	text-transform: uppercase;
	cursor: pointer;
}
.modal__ok:hover {
	background: rgba(204, 68, 0, 0.28);
	border-color: rgba(204, 68, 0, 0.5);
}
.social {
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin-bottom: 10px;
}
.social__item {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	font-size: 0;
	background-position: center center;
	background-repeat: no-repeat;
}
.social__item-fb {
	background-image: url(../img/socials/facebook.svg);
	background-size: 50px;
}
.social__item-inst {
	background-image: url(../img/socials/instagram.svg);
	background-size: 50px;
}
.social__item-tw {
	background-image: url(../img/socials/twitter.svg);
	background-size: 50px;
}
.social__item-sc {
	background-image: url(../img/socials/soundcloud.svg);
	background-size: 50px;
}
.social__item-bp {
	width: 120px;
	height: 120px;
	background-image: url(../img/socials/beatport.png);
	background-size: 127%;
}
.email-link {
	background-color: rgba(20, 0, 0, 0.5);
	display: block;
	padding-top: 30px;
	padding-bottom: 30px;
	padding-left: 10px;
	padding-right: 10px;
	font-size: 2.3rem;
	text-decoration: none;

	transition: background 0.3s ease-in-out;
}
.email-link:hover {
	background-color: rgba(20, 0, 0, 0.8);
	transition: background 0.3s ease-in-out;
}
.labels {
	position: relative;
	display: flex;
	align-items: stretch;
}
.gallery__grid {
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}
.gallery__item {
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
	transform: translateZ(0);
}
.gallery__img {
	display: block;
	width: 100%;
	height: 230px;
	object-fit: cover;
	transition: transform 350ms ease, filter 350ms ease;
	filter: saturate(1.05) contrast(1.05);
}
.gallery__item:hover .gallery__img {
	transform: scale(1.04);
	filter: saturate(1.2) contrast(1.1);
}

/* Booking */
.booking__links {
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}
.booking__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 72px;
	padding: 14px 16px;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 4px;
	color: rgba(255, 255, 255, 0.95);
	background: rgba(204, 68, 0, 0.16);
	border: 1px solid rgba(204, 68, 0, 0.28);
	border-radius: 14px;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
}
.booking__btn:hover {
	background: rgba(204, 68, 0, 0.26);
	border-color: rgba(204, 68, 0, 0.45);
}
.booking__note {
	opacity: 0.9;
	margin-top: 18px;
}

/* Fullscreen lightbox */
.lightbox {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 10000;
}
.lightbox__backdrop {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.86);
	backdrop-filter: blur(6px);
}
.lightbox__inner {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px;
}
.lightbox__close {
	position: absolute;
	right: 16px;
	top: 16px;
	height: 44px;
	width: 44px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(255, 255, 255, 0.08);
	color: #DAEAEF;
	cursor: pointer;
	font-size: 18px;
	/* Must stay above Swiper navigation on mobile */
	z-index: 2000;
}
.lightbox__close:hover {
	background: rgba(204, 68, 0, 0.14);
	border-color: rgba(204, 68, 0, 0.25);
}
.lightbox__swiper {
	width: min(1100px, 100%);
	height: min(78vh, 820px);
}
.lightbox__slide {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.lightbox__img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	background: #000;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}
.lightbox .swiper-button-prev,
.lightbox .swiper-button-next {
	color: rgba(204, 68, 0, 0.9);
}
.labels__bg {
	position: relative;
	width: 50%;
	min-height: 640px;
	background-position: right center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: all 500ms ease-in-out;
}
.labels__list {
	list-style: none;
	width: 50%;
	padding: 0;
	margin: 0;
}
.labels__item {
	position: relative;
	z-index: 1;
}
.labels__link {
	position: relative;
	text-decoration: none;
	display: block;
	width: 200px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 10px;
	padding-bottom: 10px;

	transform: translateX(0);
	transition: all 300ms ease-in-out;
}
.labels__item-thumb img {
	max-width: 100%;
}
.labels__item-thumb {
	position: absolute;
	opacity: 0;
	display: none;
	width: 100px;
	height: 100px;
	top: -120%;
	right: -80px;
	transform: translateX(10px);
	transition: all 300ms ease-in-out;
}
.labels__link:hover {
	transform: translateX(-10px);
	transition: all 300ms ease-in-out;
}
@media (max-width: 960px) {
	.section {
		margin-bottom: 0;
		width: calc(100% - 60px);
	}
	.section--without-padding {
		width: 100%;
	}
	.content {
		padding-top: 0;
		padding-left: 0;
		padding-right: 0;
	}
	.hero {
		float: none;
		margin-bottom: 0;
	}
	.hero__text {
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	.tracks {
		margin-bottom: 0;
	}
	.video {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
	/* Mobile videos: no carousel, 2-column grid */
	.video__carousel.video__carousel--grid {
		max-width: none;
		padding-left: 10px;
		padding-right: 10px;
	}
	.video__carousel.video__carousel--grid .swiper-button-prev,
	.video__carousel.video__carousel--grid .swiper-button-next,
	.video__carousel.video__carousel--grid .swiper-scrollbar {
		display: none !important;
	}
	.video__carousel.video__carousel--grid #videoCarouselWrapper {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}
	.video__carousel.video__carousel--grid .videoGrid__item {
		min-width: 0;
	}
	.video__carousel.video__carousel--grid .videoCard__media {
		border-radius: 8px;
		max-height: 38vh;
	}
	.video__carousel.video__carousel--grid .videoCard--portrait .videoCard__media {
		max-height: 44vh;
	}
	.video__carousel.video__carousel--grid .videoCard__caption {
		margin-top: 8px;
		font-size: 10px;
		letter-spacing: 1.5px;
	}
	.videoCard__media {
		max-height: 66vh;
	}
	.videoCard--portrait .videoCard__media {
		max-height: 72vh;
	}
	.labels {
		padding-bottom: 50px;
	}
	.contactForm__info {
		display: none;
	}
	.footer {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.lightbox__inner {
		padding: 10px;
	}
	.lightbox__close {
		/* top: calc(12px + env(safe-area-inset-top, 0px)); */
		top: 100px;
		right: calc(12px + env(safe-area-inset-right, 0px));
	}
}
@media (max-width: 720px) {
	.section {
		padding-top: 15px;
		padding-bottom: 15px;
		padding-left: 10px;
		padding-right: 10px;
		width: calc(100% - 20px);
	}
	.section.section--without-padding {
		padding-left: 0;
		padding-right: 0;
		width: 100%;
	}
	.hero {
		/* leave room for fixed header controls */
		padding-top: 96px;
		padding-bottom: 50px;
	}
	.hero__title {
		font-size: 2rem;
		padding-bottom: 20px;
	}
	.title {
		letter-spacing: 4px;
		font-size: 1.1rem;
	}
	.gallery__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	.gallery__img {
		height: 180px;
	}
	.booking__links {
		grid-template-columns: 1fr;
	}
	.contactForm__container {
		grid-template-columns: 1fr;
		padding-left: 10px;
		padding-right: 10px;
	}
	.labels__bg {
		display: none !important;
	}
	.labels__list {
		width: 100%;
	}
	.email-link {
		font-size: 2rem;
	}
	.labels {
		padding-bottom: 50px;
	}
	.email-link {
		font-size: 1.5em;
	}
	.logo {
		width: 50px;
		height: 50px;
	}
	.hero__logo {
		position: absolute;
		left: 14px;
		top: calc(12px + 10px + (54px - 50px) / 2);
		margin: 0;
	}
}