/* ==========================================================================
   KONNEKT - editorial visual system
   ========================================================================== */

@font-face {
	font-family: "Helvetica World Regular";
	src: url("../fonts/HelveticaWorld-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Helvetica World Bold";
	src: url("../fonts/HelveticaWorld-Bold.ttf") format("truetype");
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

:root {
	--paper: #eeece7;
	--paper-2: #f7f5ef;
	--ink: #0d0d0d;
	--muted: #69665f;
	--line: #d8d5cd;
	--red: #c1272d;
	--olive: #667447;
	--clay: #b87b5e;
	--blue: #274c8f;
	--card: #ffffff;
	--font-head: "Helvetica World Bold", "Helvetica World", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--font-body: "Helvetica World Regular", "Helvetica World", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--font-mono: "Helvetica World Regular", "Helvetica World", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--wrap: 1440px;
	--header-h: 72px;
	--ease-out: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.45;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-head);
	font-weight: 900;
}
button, input { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--ink); color: var(--paper); }

.container { width: min(100% - 48px, var(--wrap)); margin-inline: auto; }
.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}
.skip-link {
	position: fixed;
	top: -60px;
	left: 16px;
	z-index: 10000;
	background: var(--ink);
	color: #fff;
	padding: 10px 14px;
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

.page-preloader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: var(--ink);
	opacity: 1;
	visibility: visible;
	transition: opacity .42s var(--ease-out), visibility .42s var(--ease-out);
}
.page-preloader__video {
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: #000;
}
.page-preloader.is-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.js.is-preloading body,
html.has-lightbox body {
	overflow: hidden;
}
html.has-site-signup body {
	overflow: hidden;
}
.js.is-preloading .site-header,
.js.is-preloading .site-main,
.js.is-preloading .site-footer,
.js.is-preloading .scroll-progress {
	visibility: hidden;
}
.js.is-preloading .page-preloader {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 400;
	height: 3px;
	pointer-events: none;
}
.scroll-progress span {
	display: block;
	width: 0%;
	height: 100%;
	background: var(--red);
}

.site-header {
	position: sticky;
	top: 14px;
	z-index: 300;
	width: min(100% - 48px, 1840px);
	margin: 14px auto 0;
	background: rgba(247,245,239,.94);
	backdrop-filter: blur(16px);
	border: 3px solid var(--ink);
	transition: transform .24s var(--ease-out), box-shadow .2s;
}
.site-header.is-stuck { box-shadow: 0 16px 34px -28px rgba(13,13,13,.7); }
.site-header.is-hidden { transform: translateY(-100%); }
.site-header__inner {
	position: relative;
	min-height: 104px;
	padding: 0 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.site-branding { flex: 0 0 auto; }
.brand-link { display: inline-flex; align-items: center; }
.brand-logo {
	position: relative;
	display: block;
	width: clamp(92px, 7vw, 132px);
	height: clamp(54px, 4.4vw, 76px);
}
.brand-logo__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: left center;
	transition: opacity .32s var(--ease-out), transform .32s var(--ease-out);
}
.brand-logo__img--default {
	opacity: 1;
	transform: translateY(0) scale(1);
}
.brand-logo__img--scrolled {
	opacity: 0;
	transform: translateY(3px) scale(.96);
}
.site-header.is-stuck .brand-logo__img--default {
	opacity: 0;
	transform: translateY(-3px) scale(.96);
}
.site-header.is-stuck .brand-logo__img--scrolled {
	opacity: 1;
	transform: translateY(0) scale(1);
}
.k-wordmark,
.footer-wordmark {
	font-weight: 900;
	font-size: 30px;
	line-height: 1;
	text-transform: uppercase;
}
.footer-wordmark {
	display: inline-flex;
	align-items: flex-start;
	width: min(160px, 45vw);
}
.footer-wordmark img {
	width: 100%;
	height: auto;
	object-fit: contain;
	object-position: left top;
}
.brand-link .custom-logo { width: 120px; height: auto; }
.site-nav {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.nav-menu,
.footer-menu {
	display: flex;
	align-items: center;
	gap: 42px;
	list-style: none;
	padding: 0;
	margin: 0;
}
.nav-menu a {
	font-family: var(--font-mono);
	font-size: 18px;
	letter-spacing: 0;
	text-transform: uppercase;
	color: var(--muted);
}
.nav-menu a:hover,
.footer-menu a:hover,
.footer-social a:hover { color: var(--red); }
.nav-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 34px;
	border: 2px solid var(--ink);
	border-radius: 999px;
	background: transparent;
	color: var(--ink);
	font-family: var(--font-mono);
	font-size: 18px;
	letter-spacing: 0;
	text-transform: uppercase;
}
.nav-toggle {
	display: none;
	width: 38px;
	height: 38px;
	margin-left: auto;
	border: 1px solid var(--ink);
	background: transparent;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
}
.nav-toggle span {
	width: 18px;
	height: 2px;
	background: var(--ink);
}
.mobile-nav {
	border-top: 1px solid var(--line);
	padding: 12px 24px 20px;
	background: var(--paper);
}
.mobile-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}
.mobile-nav a {
	display: block;
	font-weight: 800;
	text-transform: uppercase;
	padding: 8px 0;
}

.btn,
.pill-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 18px;
	border: 1px solid var(--ink);
	font-family: var(--font-mono);
	font-size: 11px;
	line-height: 1;
	text-transform: uppercase;
	transition: background .18s, color .18s, transform .18s var(--ease-out);
}
.btn:hover,
.pill-link:hover { transform: translateY(-2px); }
.btn--dark,
.pill-link { background: var(--ink); color: #fff; }
.btn--ghost { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.72); }

.hero {
	position: relative;
	min-height: calc(92vh - var(--header-h));
	display: grid;
	place-items: center;
	overflow: hidden;
	background: #dddddd;
	color: var(--ink);
}
.hero--video {
	min-height: 0;
	display: block;
	background: #000;
}
.hero__video {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	background: #000;
}
.hero__inner {
	position: relative;
	z-index: 2;
	width: min(100% - 48px, 1120px);
	margin: 0 auto;
	padding: clamp(72px, 11vw, 150px) 0 clamp(66px, 10vw, 130px);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.hero__brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: clamp(16px, 2vw, 24px);
	margin-bottom: clamp(30px, 4.6vw, 54px);
}
.hero__logo {
	width: clamp(220px, 20vw, 360px);
	height: auto;
	object-fit: contain;
}
.hero__eyebrow {
	font-family: var(--font-head);
	font-size: clamp(20px, 2.25vw, 34px);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
	margin-bottom: 8px;
}
.hero__title {
	max-width: none;
	font-family: var(--font-head);
	font-size: clamp(18px, 2vw, 28px);
	font-weight: 900;
	line-height: 1.12;
	text-transform: none;
}

.section-block {
	width: min(100% - 48px, var(--wrap));
	margin: 104px auto 0;
}
.section-heading {
	width: min(100%, 720px);
	margin: 0 auto 36px;
	text-align: center;
}
.section-heading h2 {
	font-size: 48px;
	line-height: .98;
	text-transform: uppercase;
	margin-bottom: 12px;
}
.section-heading h2:last-child {
	margin-bottom: 0;
}
.section-heading p {
	font-size: 17px;
	font-weight: 700;
	color: #34322d;
	line-height: 1.4;
}

.event-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(24px, 2.8vw, 40px);
	align-items: stretch;
}
.event-row--single {
	grid-template-columns: minmax(0, 960px);
	justify-content: center;
}
.event-card {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	min-width: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	overflow: hidden;
	padding: 0;
	text-align: center;
}
.event-row--single .event-card {
	display: grid;
	grid-template-columns: minmax(240px, 390px) minmax(0, 1fr);
	gap: clamp(28px, 4vw, 64px);
	align-items: center;
}
.event-card__art {
	display: block;
	width: 100%;
	margin: 0 auto 24px;
	border: 0;
	border-radius: 0;
	overflow: hidden;
	background: transparent;
}
.event-row--single .event-card__art {
	margin: 0;
}
.event-card__art img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border: 2px solid var(--ink);
	background: var(--paper);
	transition: transform .28s var(--ease-out);
}
.event-card:hover .event-card__art img,
.event-card__art:hover img {
	transform: scale(1.025);
}
.event-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	padding: 0;
	text-align: center;
}
.event-card__date {
	font-family: var(--font-body);
	font-size: clamp(17px, 1.35vw, 22px);
	font-weight: 400;
	text-transform: none;
	color: #4a4844;
	margin-bottom: 6px;
}
.event-card__date strong {
	font-weight: 900;
	color: var(--ink);
}
.event-card__title {
	font-family: var(--font-head);
	font-size: clamp(30px, 2vw, 50px);
	font-weight: 900;
	line-height: 1.1;
	text-transform: none;
	margin-bottom: 18px;
	text-align: left;
}
.event-card__title a:hover {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}
.event-card .pill-link {
	margin-top: 28px;
	min-width: min(100%, 238px);
	min-height: 52px;
	border-radius: 999px;
	border-color: var(--ink);
	background: var(--ink);
	color: #fff;
	font-size: 14px;
	letter-spacing: 0;
}
.event-card:hover .pill-link,
.event-card .pill-link:hover {
	background: var(--ink);
	color: #fff;
	transform: translateY(-2px) scale(1.015);
}

.detail-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: var(--card);
	border: 1px solid var(--ink);
}
.detail-poster {
	min-height: 560px;
	border-right: 1px solid var(--ink);
	background: var(--paper-2);
}
.detail-poster img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.detail-body {
	padding: 42px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.detail-body__eyebrow {
	font-family: var(--font-mono);
	font-size: 11px;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 10px;
}
.detail-body h2 {
	font-size: 40px;
	line-height: 1;
	margin-bottom: 24px;
}
.meta-list {
	width: 100%;
	margin-bottom: 24px;
}
.meta-row {
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 14px;
	padding: 10px 0;
	border-bottom: 1px solid var(--line);
	font-size: 14px;
}
.meta-row span {
	font-family: var(--font-mono);
	font-size: 10px;
	text-transform: uppercase;
	color: var(--muted);
}
.detail-copy {
	font-size: 16px;
	line-height: 1.75;
	color: #2b2a27;
	margin-bottom: 28px;
}
.lineup-list {
	width: 100%;
	margin-bottom: 28px;
}
.lineup-list p {
	font-family: var(--font-mono);
	font-size: 10px;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 10px;
}
.lineup-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.lineup-list li {
	padding: 9px 0;
	border-bottom: 1px dotted var(--line);
	font-weight: 800;
	font-size: 18px;
}

.event-pdp {
	width: min(100%, 1920px);
	margin: 0 auto;
	background: #fff;
}
.event-pdp__back {
	display: inline-flex;
	margin-bottom: 24px;
	font-family: var(--font-mono);
	font-size: 13px;
	text-transform: uppercase;
	color: var(--muted);
}
.event-pdp__grid {
	display: grid;
	grid-template-columns: minmax(280px, .76fr) minmax(0, 1fr);
	min-height: calc(100vh - 126px);
	border-bottom: 2px solid var(--ink);
	background: #fff;
}
.event-pdp__poster {
	display: grid;
	place-items: center;
	min-height: calc(100vh - 126px);
	padding: clamp(16px, 2vw, 28px);
	border-right: 2px solid var(--ink);
	background: #eeece7;
}
.event-pdp__poster img {
	width: 100%;
	height: min(100%, calc(100vh - 196px));
	object-fit: contain;
	object-position: center;
}
.event-pdp__content {
	justify-content: center;
	padding: clamp(22px, 2.8vw, 42px);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	background: #fff;
}
.event-pdp__eyebrow {
	font-family: var(--font-mono);
	font-size: clamp(11px, .82vw, 13px);
	text-transform: uppercase;
	color: #df5b55;
	margin-bottom: 8px;
}
.event-pdp h1 {
	max-width: 780px;
	font-size: clamp(28px, 3vw, 48px);
	line-height: 1.02;
	letter-spacing: 0;
	margin-bottom: clamp(14px, 1.8vw, 24px);
}
.event-pdp__meta {
	width: 100%;
	display: grid;
	gap: 0;
	margin-bottom: clamp(14px, 1.8vw, 22px);
}
.event-pdp__meta div {
	display: grid;
	grid-template-columns: 82px 1fr;
	gap: 16px;
	padding: 7px 0;
	border-bottom: 1px solid var(--line);
}
.event-pdp__meta span {
	font-family: var(--font-mono);
	font-size: 11px;
	text-transform: uppercase;
	color: var(--muted);
}
.event-pdp__meta strong {
	font-size: clamp(15px, 1.15vw, 18px);
	font-weight: 400;
	line-height: 1.2;
}
.event-pdp__copy {
	max-width: 780px;
	font-size: clamp(14px, .92vw, 16px);
	line-height: 1.42;
	color: #2b2a27;
	margin-bottom: clamp(14px, 1.5vw, 20px);
}
.event-pdp__copy p + p {
	margin-top: .48em;
}
.event-pdp__lineup {
	width: 100%;
	margin-bottom: clamp(14px, 1.6vw, 20px);
}
.event-pdp__lineup h2 {
	font-family: var(--font-mono);
	font-size: 11px;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 8px;
}
.event-pdp__lineup ul {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.event-pdp__lineup li {
	padding: 6px 9px;
	border: 1px solid var(--ink);
	font-size: clamp(11px, .82vw, 13px);
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}
.event-pdp .btn {
	min-width: min(100%, 320px);
	min-height: 46px;
	border-radius: 999px;
	font-size: 12px;
	letter-spacing: 0;
}

.artist-row {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 22px;
}
.artist-card {
	display: flex;
	flex-direction: column;
	min-height: 0;
	background: var(--card);
	border: 2px solid var(--ink);
	overflow: hidden;
	transition: transform .24s var(--ease-out), box-shadow .24s var(--ease-out);
}
.artist-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 34px -28px rgba(13,13,13,.7);
}
.artist-card__media {
	position: relative;
	overflow: hidden;
	background: var(--paper-2);
}
.artist-card__media img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}
.artist-card__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 24px;
	text-align: center;
}
.artist-card strong {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 56px;
	font-size: 28px;
	line-height: 1;
	text-align: center;
}
.artist-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	width: min(100%, 156px);
	max-width: 100%;
	padding: 0 14px;
	background: var(--ink);
	color: #fff;
	border-radius: 999px;
	font-family: var(--font-head);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.05;
	text-align: center;
	text-transform: uppercase;
	white-space: normal;
}

.gallery-intro {
	display: flex;
	justify-content: center;
	margin: -10px auto 26px;
}
.gallery-controls {
	display: flex;
	gap: 10px;
}
.carousel-btn {
	display: grid;
	place-items: center;
	width: 48px;
	height: 42px;
	padding: 0 0 3px;
	border: 0;
	background: var(--ink);
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 26px;
	font-weight: 400;
	line-height: 1;
}
.gallery-track {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	overflow-x: auto;
	padding: 4px 0 14px;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	cursor: none;
	--gallery-image-height: clamp(260px, 34vw, 440px);
	--gallery-zoom-x: 50%;
	--gallery-zoom-y: 50%;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track *,
.gallery-track a {
	cursor: none;
}
.gallery-track::before,
.gallery-track::after {
	position: absolute;
	left: var(--gallery-zoom-x);
	top: var(--gallery-zoom-y);
	z-index: 5;
	pointer-events: none;
	opacity: 0;
	transform: translate(-50%, -50%) scale(.82);
	transition: opacity .18s var(--ease-out), transform .18s var(--ease-out);
}
.gallery-track::before {
	content: "";
	width: 82px;
	height: 82px;
	border: 2px solid rgba(13, 13, 13, .48);
	border-radius: 50%;
	background: rgba(238, 236, 231, .48);
	box-shadow: 0 16px 36px rgba(13, 13, 13, .16);
	backdrop-filter: blur(10px);
}
.gallery-track::after {
	content: "";
	width: 32px;
	height: 32px;
	background:
		linear-gradient(var(--ink), var(--ink)) center / 2px 32px no-repeat,
		linear-gradient(var(--ink), var(--ink)) center / 32px 2px no-repeat;
}
.gallery-track:hover::before,
.gallery-track:hover::after,
.gallery-track.is-zooming::before,
.gallery-track.is-zooming::after,
.gallery-track:focus-within::before,
.gallery-track:focus-within::after {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}
.gallery-item {
	display: flex;
	position: relative;
	flex: 0 0 auto;
	flex-direction: column;
	gap: 0;
	scroll-snap-align: center;
}
.gallery-item img {
	display: block;
	width: auto;
	height: var(--gallery-image-height);
	max-width: none;
	object-fit: contain;
	border: 0;
	background: transparent;
	transition: transform .28s var(--ease-out), filter .28s var(--ease-out);
}
.gallery-item:hover img {
	transform: translateY(-4px);
	filter: saturate(1.06);
}
.gallery-item--wide {
	flex-basis: auto;
}
.gallery-item span {
	display: none;
	font-family: var(--font-mono);
	font-size: 10px;
	text-transform: uppercase;
	color: var(--muted);
}

.image-lightbox {
	position: fixed;
	inset: 0;
	z-index: 10050;
	display: grid;
	place-items: center;
	padding: clamp(22px, 5vw, 72px);
	background: rgba(8,8,8,.92);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .24s var(--ease-out), visibility .24s var(--ease-out);
}
.image-lightbox.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.image-lightbox figure {
	width: min(100%, 1080px);
	margin: 0;
	color: #fff;
}
.image-lightbox img {
	width: 100%;
	max-height: 78vh;
	object-fit: contain;
	background: #111;
	border: 1px solid rgba(255,255,255,.28);
}
.image-lightbox figcaption {
	margin-top: 12px;
	font-family: var(--font-mono);
	font-size: 12px;
	text-transform: uppercase;
	color: rgba(255,255,255,.72);
}
.image-lightbox figcaption:empty {
	display: none;
}
.image-lightbox__close,
.image-lightbox__nav {
	position: absolute;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255,255,255,.52);
	background: rgba(255,255,255,.08);
	color: #fff;
}
.image-lightbox__close {
	top: 22px;
	right: 22px;
	width: 44px;
	height: 44px;
	font-size: 24px;
}
.image-lightbox__nav {
	top: 50%;
	width: 48px;
	height: 48px;
	transform: translateY(-50%);
	font-size: 30px;
}
.image-lightbox__nav--prev { left: 22px; }
.image-lightbox__nav--next { right: 22px; }

.site-signup-modal {
	position: fixed;
	inset: 0;
	z-index: 10060;
	display: grid;
	place-items: center;
	padding: clamp(18px, 4vw, 42px);
	background: rgba(0, 0, 0, .72);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .24s var(--ease-out), visibility .24s var(--ease-out);
}
.site-signup-modal[hidden] {
	display: none !important;
}
.site-signup-modal.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.site-signup-modal__panel {
	position: relative;
	width: min(620px, 100%);
	max-height: min(780px, calc(100dvh - 36px));
	overflow: auto;
	padding: clamp(32px, 5vw, 54px);
	background: #000;
	color: #fff;
	box-shadow: 0 26px 76px rgba(0, 0, 0, .42);
}
.site-signup-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, .34);
	background: transparent;
	color: #fff;
	font: 400 28px/1 Arial, sans-serif;
}
.site-signup-modal__intro {
	margin: 0 0 34px;
	padding-right: 34px;
}
.site-signup-modal__intro h2 {
	margin-bottom: 14px;
	font-size: clamp(30px, 3.8vw, 44px);
	line-height: 1;
	text-transform: uppercase;
}
.site-signup-modal__intro p {
	max-width: 460px;
	font-size: 16px;
	line-height: 1.45;
	color: rgba(255, 255, 255, .78);
}
.site-signup-modal__form .wpcf7 form {
	display: grid;
	gap: 26px;
}
.site-signup-modal__form .wpcf7 p {
	display: grid;
	gap: 22px;
	margin: 0;
}
.site-signup-modal__form br {
	display: none;
}
.site-signup-modal__form label {
	display: grid;
	gap: 13px;
	width: 100%;
}
.site-signup-modal__form label:not(:last-child) {
	margin-bottom: 22px;
}
.site-signup-modal__form .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}
.site-signup-modal__form input:not([type="submit"]),
.site-signup-modal__form textarea,
.site-signup-modal__form select {
	width: 100%;
	min-height: 50px;
	padding: 12px 14px;
	border: 1px solid rgba(255, 255, 255, .36);
	background: #0d0d0d;
	color: #fff;
	font-family: var(--font-body);
	font-size: 16px;
}
.site-signup-modal__form input[type="submit"],
.site-signup-modal__form button[type="submit"] {
	width: 100%;
	min-height: 54px;
	border: 1px solid #fff;
	background: #fff;
	color: #000;
	font-family: var(--font-head);
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .08em;
}
.site-signup-modal__form .wpcf7-response-output {
	margin: 0;
	padding: 12px 14px;
	color: #fff;
	border-color: rgba(255, 255, 255, .48);
}
.site-signup-modal__fallback {
	margin: 0;
	color: rgba(255, 255, 255, .78);
}

.partner-panel {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 34px 42px;
	padding: 54px;
	background: #fff;
}
.partner-logo {
	min-height: 58px;
	display: grid;
	place-items: center;
	text-align: center;
	font-weight: 900;
	font-size: 18px;
	line-height: 1.05;
	text-transform: uppercase;
}
.partner-logo:nth-child(3n) { font-family: var(--font-mono); font-size: 13px; }
.partner-logo:nth-child(4n) { color: var(--blue); }
.partner-logo:nth-child(5n) { color: var(--clay); }

.sponsor-panel {
	background: #fff;
	border: 2px solid var(--ink);
}
.partners .section-heading {
	margin-bottom: 22px;
}
.sponsor-tier {
	padding: clamp(20px, 2.5vw, 34px) 18px;
	text-align: center;
	border-bottom: 1px dashed var(--line);
}
.sponsor-tier:last-child {
	border-bottom: 0;
}
.sponsor-tier__label {
	margin-bottom: 12px;
	font-family: var(--font-mono);
	font-size: 13px;
	letter-spacing: 0;
	text-transform: uppercase;
	color: #a7a29a;
}
.sponsor-tier__logos {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px 22px;
}
.sponsor-logo {
	width: 138px;
	height: 44px;
	display: grid;
	place-items: center;
	border: 2px solid var(--ink);
	background: var(--paper-2);
	font-family: var(--font-mono);
	font-size: 12px;
	text-transform: uppercase;
	color: #a7a29a;
}

.community-block {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 34px;
	background: var(--ink);
	color: #fff;
}
.community-block__eyebrow {
	font-family: var(--font-mono);
	font-size: 11px;
	text-transform: uppercase;
	color: rgba(255,255,255,.64);
	margin-bottom: 8px;
}
.community-block h2 {
	font-size: 28px;
	line-height: 1.08;
}
.signup-form {
	display: flex;
	gap: 8px;
	min-width: min(100%, 420px);
}
.signup-form .wpcf7 {
	width: 100%;
}
.signup-form .wpcf7 form,
.signup-form__fallback {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin: 0;
}
.signup-form .wpcf7 p {
	display: contents;
	margin: 0;
}
.signup-form br {
	display: none;
}
.signup-form label,
.signup-form .wpcf7-form-control-wrap {
	display: block;
	flex: 1;
	min-width: 0;
}
.signup-form label {
	font-size: 0;
}
.signup-form label .wpcf7-form-control-wrap {
	font-size: 16px;
}
.signup-form input:not([type="submit"]):not([type="hidden"]),
.signup-form textarea,
.signup-form select {
	flex: 1;
	min-width: 0;
	width: 100%;
	height: 42px;
	border: 1px solid rgba(255,255,255,.35);
	background: transparent;
	color: #fff;
	padding: 0 12px;
}
.signup-form textarea {
	min-height: 84px;
	padding-top: 10px;
	resize: vertical;
}
.signup-form input::placeholder,
.signup-form textarea::placeholder { color: rgba(255,255,255,.62); }
.signup-form input[type="submit"],
.signup-form button {
	height: 42px;
	border: 0;
	background: #fff;
	color: var(--ink);
	padding: 0 18px;
	font-family: var(--font-mono);
	font-size: 11px;
	text-transform: uppercase;
	cursor: pointer;
}
.signup-form .wpcf7-spinner {
	margin: 10px 0 0;
	filter: invert(1);
}
.signup-form .wpcf7-response-output {
	flex-basis: 100%;
	width: 100%;
	margin: 10px 0 0;
	padding: 8px 10px;
	border-color: rgba(255,255,255,.42);
	color: #fff;
}

.site-footer {
	width: min(100% - 48px, var(--wrap));
	margin: 72px auto 0;
	padding: 0 0 34px;
	border-top: 1px solid var(--line);
}
.site-footer__inner {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 28px;
	padding-top: 28px;
	border-top: 1px solid var(--line);
}
.footer-menu {
	align-items: flex-start;
	flex-direction: column;
	gap: 5px;
}
.footer-menu a,
.footer-social a {
	font-size: 12px;
	color: #333;
}
.footer-social {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.site-footer__base {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-top: 32px;
	font-size: 12px;
	color: var(--muted);
}
.to-top {
	width: 32px;
	height: 32px;
	border: 1px solid var(--ink);
	background: transparent;
}

.about-page {
	width: min(100% - 48px, var(--wrap));
	margin: 0 auto;
	padding-top: 20px;
}
.about-hero {
	position: relative;
	min-height: 500px;
	overflow: hidden;
	background: var(--ink);
}
.about-hero img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	filter: saturate(.9);
	opacity: .9;
}
.about-hero__statement {
	position: absolute;
	right: 0;
	bottom: 96px;
	width: min(680px, 72%);
	background: rgba(84,101,54,.86);
	color: #fff;
	padding: 48px 56px;
}
.about-hero__statement h1 {
	font-size: 44px;
	line-height: 1.02;
}
.about-copy {
	display: grid;
	grid-template-columns: 1fr 1.25fr;
	gap: 42px;
	width: min(100%, 860px);
	margin: 72px auto 0;
}
.about-copy h2 {
	font-size: 34px;
	line-height: 1.05;
}
.about-copy p {
	font-weight: 700;
	font-size: 19px;
	line-height: 1.45;
	margin-bottom: 18px;
}
.about-copy .about-quote {
	margin-top: 28px;
	font-weight: 900;
	font-size: 28px;
	line-height: 1.1;
}
.about-feature-image {
	width: min(100%, 620px);
	margin: 58px auto 0;
}
.about-feature-image img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	background: var(--ink);
}
.about-feature-image figcaption {
	margin-top: 8px;
	font-family: var(--font-mono);
	font-size: 9px;
	text-transform: uppercase;
}
.about-artists {
	width: min(100%, 840px);
	margin: 78px auto 0;
	padding: 42px 76px 48px;
	background: #fff;
}
.about-artists p {
	max-width: 420px;
	font-weight: 700;
	margin-bottom: 10px;
}
.about-artists h2 {
	font-size: 18px;
	text-transform: uppercase;
	margin-bottom: 14px;
}
.about-artist-list {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 16px 34px;
}
.about-artist-list span {
	display: inline-flex;
	align-items: baseline;
	gap: 34px;
	font-weight: 900;
	font-size: 31px;
	line-height: 1.12;
	white-space: nowrap;
}
.about-artist-list span:not(:last-child)::after {
	content: "/";
	font-family: var(--font-mono);
	font-size: .78em;
	font-weight: 400;
	color: var(--muted);
	opacity: .85;
	transform: translateY(-.02em);
}
.about-strip {
	margin-top: 78px;
}
.about-strip__intro {
	width: min(100%, 420px);
	margin: 0 auto 22px;
	font-weight: 700;
	line-height: 1.15;
}
.about-strip__row {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	margin-inline: calc((100vw - min(100vw - 48px, var(--wrap))) / -2);
	padding-inline: calc((100vw - min(100vw - 48px, var(--wrap))) / 2);
	scrollbar-width: none;
	--gallery-image-height: clamp(260px, 34vw, 440px);
}
.about-strip__row::-webkit-scrollbar { display: none; }
.about-strip__row a {
	flex: 0 0 280px;
	cursor: pointer;
}
.about-strip__row img {
	width: 100%;
	height: var(--gallery-image-height);
	object-fit: contain;
	background: transparent;
}
.about-partners {
	width: min(100%, 840px);
	margin: 78px auto 0;
}
.about-partners h2 {
	font-size: 28px;
	margin-bottom: 24px;
}

.page-shell {
	width: min(100% - 48px, var(--wrap));
	margin: 0 auto;
	padding: 64px 0;
	min-height: 60vh;
}
.page-header {
	margin-bottom: 28px;
}
.page-title,
.entry-title {
	font-size: 42px;
	line-height: 1;
	text-transform: uppercase;
}
.post-list {
	display: grid;
	gap: 24px;
}
.post-card {
	background: #fff;
	border: 1px solid var(--ink);
}
.post-card__media img {
	width: 100%;
	height: 280px;
	object-fit: cover;
}
.post-card__body {
	padding: 24px;
}
.entry-content {
	max-width: 720px;
}
.entry-content > * + * { margin-top: 1em; }
.pagination,
.nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 34px;
}
.page-numbers {
	border: 1px solid var(--ink);
	padding: 6px 10px;
}
.page-numbers.current {
	background: var(--ink);
	color: #fff;
}

.contact-page {
	width: min(100% - 48px, var(--wrap));
	margin: 0 auto;
	padding: 78px 0 18px;
}
.contact-hero {
	width: min(100%, 980px);
	margin: 0 auto;
	padding: clamp(42px, 6vw, 76px);
	background: #fff;
	border: 2px solid var(--ink);
}
.contact-hero__eyebrow {
	margin-bottom: 16px;
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 0;
	text-transform: uppercase;
	color: var(--red);
}
.contact-hero h1 {
	max-width: 760px;
	margin-bottom: 22px;
	font-size: clamp(44px, 6vw, 82px);
	line-height: .94;
	text-transform: uppercase;
}
.contact-hero p {
	max-width: 680px;
	margin-bottom: 30px;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.35;
}
.contact-grid {
	width: min(100%, 980px);
	margin: 28px auto 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}
.contact-card {
	min-height: 190px;
	padding: 26px;
	background: var(--paper-2);
	border: 1px solid var(--ink);
}
.contact-card span {
	display: block;
	margin-bottom: 34px;
	font-family: var(--font-mono);
	font-size: 12px;
	color: var(--muted);
}
.contact-card h2 {
	margin-bottom: 10px;
	font-size: 24px;
	text-transform: uppercase;
}
.contact-card p {
	font-weight: 700;
	color: #33302b;
}

[data-reveal] {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .62s var(--ease-out), transform .62s var(--ease-out);
	transition-delay: calc(var(--d, 0) * 80ms);
}
[data-reveal].is-revealed,
[data-scene].is-revealed { opacity: 1; transform: none; }

@media (max-width: 940px) {
	.site-nav,
	.nav-cta { display: none; }
	.nav-toggle { display: flex; }
	.site-header {
		width: min(100% - 28px, 1840px);
		top: 10px;
		margin-top: 10px;
	}
	.site-header__inner {
		min-height: 78px;
		padding: 0 22px;
	}
	.k-wordmark,
	.footer-wordmark { font-size: 22px; }
	.brand-logo {
		width: 92px;
		height: 54px;
	}
	.hero__logo { width: clamp(210px, 36vw, 310px); }
	.hero__title { font-size: 24px; }
	.section-heading h2 { font-size: 38px; }
	.detail-wrap,
	.about-copy,
	.site-footer__inner {
		grid-template-columns: 1fr;
	}
	.event-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.event-row--single { grid-template-columns: minmax(0, 680px); }
	.event-row--single .event-card {
		grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
	}
	.artist-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.contact-grid { grid-template-columns: 1fr; }
	.event-pdp__grid {
		grid-template-columns: 1fr;
		min-height: auto;
	}
	.event-pdp__poster {
		min-height: auto;
		padding: 18px;
		border-right: 0;
		border-bottom: 2px solid var(--ink);
	}
	.event-pdp__poster img {
		width: auto;
		max-width: 100%;
		height: auto;
		max-height: 44vh;
		margin: 0 auto;
	}
	.detail-poster {
		min-height: 440px;
		border-right: 0;
		border-bottom: 1px solid var(--ink);
	}
	.partner-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.community-block,
	.signup-form { flex-direction: column; align-items: stretch; }
	.about-hero__statement {
		width: 86%;
		bottom: 34px;
		padding: 34px;
	}
	.about-hero__statement h1 { font-size: 34px; }
	.about-artists { padding: 34px; }
	.about-artist-list span { font-size: 25px; }
}

@media (max-width: 620px) {
	body { font-size: 15px; }
	.container,
	.section-block,
	.about-page,
	.contact-page,
	.site-footer,
	.page-shell { width: min(100% - 28px, var(--wrap)); }
	.hero { min-height: 82vh; }
	.hero--video { min-height: 0; }
	.page-preloader {
		display: grid;
		place-items: center;
	}
	.page-preloader__video {
		width: min(100vw, 56.25vh);
		height: min(100vh, 177.78vw);
		aspect-ratio: 9 / 16;
		object-fit: cover;
		object-position: center center;
	}
	.hero__inner {
		width: min(100% - 28px, var(--wrap));
		padding: 58px 0 64px;
	}
	.hero__brand { margin-bottom: 34px; }
	.hero__logo { width: min(78vw, 250px); }
	.hero__eyebrow { font-size: 22px; }
	.hero__title { font-size: 18px; }
	.section-block { margin-top: 54px; }
	.section-heading h2 { font-size: 30px; }
	.section-heading p { font-size: 15px; }
	.event-row {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		padding-bottom: 6px;
	}
	.event-row--single {
		display: grid;
		grid-template-columns: 1fr;
		overflow-x: visible;
		padding-bottom: 0;
	}
	.event-card {
		flex: 0 0 86%;
		scroll-snap-align: center;
		border-radius: 0;
		padding: 0;
	}
	.event-row--single .event-card {
		display: flex;
	}
	.event-card__art {
		border-radius: 0;
		margin-bottom: 22px;
	}
	.event-card__body {
		padding-inline: 0;
	}
	.event-card__title {
		font-size: 25px;
	}
	.event-card__date,
	.event-card__venue {
		font-size: 17px;
	}
	.detail-body { padding: 26px; }
	.detail-body h2 { font-size: 31px; }
	.artist-row { grid-template-columns: 1fr; }
	.artist-card__body { padding: 20px; }
	.artist-card strong { font-size: 26px; }
	.contact-page { padding-top: 48px; }
	.contact-hero { padding: 30px 24px; }
	.contact-hero h1 { font-size: 34px; }
	.contact-hero p { font-size: 17px; }
	.event-pdp {
		width: 100%;
		margin-top: 0;
	}
	.event-pdp__content {
		padding: 24px 18px 36px;
	}
	.event-pdp h1 {
		font-size: 30px;
		margin-bottom: 18px;
	}
	.event-pdp__meta div { grid-template-columns: 1fr; gap: 4px; }
	.event-pdp__meta {
		margin-bottom: 18px;
	}
	.event-pdp__copy {
		font-size: 15px;
		line-height: 1.46;
		margin-bottom: 18px;
	}
	.event-pdp__lineup {
		margin-bottom: 20px;
	}
	.event-pdp__lineup li {
		font-size: 11px;
	}
	.gallery-item {
		scroll-snap-align: center;
	}
	.gallery-track {
		--gallery-image-height: clamp(230px, 72vw, 360px);
	}
	.gallery-track::before {
		width: 64px;
		height: 64px;
	}
	.gallery-track::after {
		width: 26px;
		height: 26px;
		background:
			linear-gradient(var(--ink), var(--ink)) center / 2px 26px no-repeat,
			linear-gradient(var(--ink), var(--ink)) center / 26px 2px no-repeat;
	}
	.site-signup-modal__panel {
		padding: 58px 22px 28px;
	}
	.site-signup-modal__intro h2 {
		font-size: 28px;
	}
	.partner-panel {
		grid-template-columns: 1fr;
		padding: 32px;
	}
	.signup-form .wpcf7 form,
	.signup-form__fallback {
		flex-direction: column;
		align-items: stretch;
	}
	.sponsor-tier {
		padding: 24px 12px;
	}
	.sponsor-logo {
		width: 124px;
		height: 40px;
	}
	.image-lightbox {
		padding: 62px 14px 26px;
	}
	.image-lightbox__nav {
		top: auto;
		bottom: 18px;
		transform: none;
	}
	.about-hero,
	.about-hero img { min-height: 520px; height: 520px; }
	.about-hero__statement {
		width: calc(100% - 28px);
		left: 14px;
		right: 14px;
		padding: 24px;
	}
	.about-hero__statement h1 { font-size: 28px; }
	.about-artist-list { gap: 12px 22px; }
	.about-artist-list span { font-size: 22px; gap: 22px; }
	.about-strip__row {
		--gallery-image-height: clamp(230px, 72vw, 360px);
	}
	.about-strip__row img {
		height: var(--gallery-image-height);
	}
	.about-strip__row a { flex-basis: 220px; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
		scroll-behavior: auto !important;
	}
	[data-reveal] { opacity: 1 !important; transform: none !important; }
	.page-preloader { display: none; }
}
.reduce-motion .page-preloader { display: none; }
.reduce-motion [data-reveal] { opacity: 1 !important; transform: none !important; }
