/* ================================================================
   SHOWS — cinematic bento / full-height concerts
   ================================================================ */
.shows {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: transparent;
	isolation: isolate;
	direction: ltr;
	text-align: left;

	/* Responsive design tokens */
	--shows-play-size: clamp(4.25rem, 9vw, 5.25rem);
	--shows-section-pad-y: clamp(2.5rem, 6vh, 5rem);
	--shows-section-pad-x: clamp(1rem, 3vw, 1.25rem);
	--shows-stage-gap: clamp(1.25rem, 3vh, 2.5rem);
	--shows-featured-min-h: min(42vh, 420px);
	--shows-upcoming-min-h: min(72vh, 760px);
	--shows-film-width: clamp(7rem, 14vw, 9.5rem);
	--shows-touch-min: 44px;
}

/* ================= Ambient ================= */
.shows__ambient {
	position: absolute;
	inset: 0;
	z-index: -1;
	overflow: hidden;
	pointer-events: none;
}

.shows__ambient-grid {
	position: absolute;
	inset: -2px;
	background-image:
		linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse 90% 75% at 50% 45%, #000 15%, transparent 78%);
	opacity: 0.55;
	animation: shows-grid-drift 28s linear infinite;
}

.shows__ambient-noise {
	position: absolute;
	inset: 0;
	opacity: 0.04;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes shows-grid-drift {
	to { background-position: 64px 64px; }
}

.shows__ambient-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(75px);
	opacity: 0.42;
}

.shows__ambient-orb--1 {
	width: 420px;
	height: 420px;
	top: -120px;
	right: -80px;
	background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 68%);
	animation: shows-orb-a 22s ease-in-out infinite;
}

.shows__ambient-orb--2 {
	width: 340px;
	height: 340px;
	bottom: -90px;
	left: -70px;
	background: radial-gradient(circle, rgba(255, 90, 120, 0.18) 0%, transparent 70%);
	animation: shows-orb-b 26s ease-in-out infinite;
}

.shows__ambient-beam {
	position: absolute;
	top: 12%;
	left: 38%;
	width: 2px;
	height: 65%;
	background: linear-gradient(to bottom, transparent, rgba(214, 255, 47, 0.4), transparent);
	transform: rotate(18deg);
	opacity: 0.35;
	animation: shows-beam-pulse 4s ease-in-out infinite;
}

@keyframes shows-orb-a {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(-28px, 22px); }
}

@keyframes shows-orb-b {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(32px, -18px); }
}

@keyframes shows-beam-pulse {
	0%, 100% { opacity: 0.2; }
	50% { opacity: 0.55; }
}

.shows__marquee {
	position: absolute;
	overflow: hidden;
	opacity: 0.18;
	pointer-events: none;
	mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.shows__marquee--upcoming {
	position: absolute;
	bottom: 6%;
	left: 0;
	right: 0;
	width: 100%;
	max-width: none;
	z-index: 0;
	opacity: 0.14;
}

.shows__marquee-track {
	display: flex;
	gap: 2rem;
	width: max-content;
	animation: shows-marquee 40s linear infinite;
}

.shows__marquee-item {
	font-size: clamp(3rem, 8vw, 6rem);
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: transparent;
	-webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
	white-space: nowrap;
}

.shows__marquee-sep {
	font-size: 2rem;
	color: var(--color-accent);
	opacity: 0.35;
	align-self: center;
}

@keyframes shows-marquee {
	to { transform: translateX(-50%); }
}

/* ================= Inner / Header ================= */
.shows__inner {
	width: 100%;
	padding-block: var(--shows-section-pad-y);
	padding-inline: var(--shows-section-pad-x);
}

.shows__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: clamp(1.5rem, 4vw, 3rem);
	margin-bottom: clamp(1.75rem, 3.5vh, 2.75rem);
	padding-bottom: clamp(1rem, 2vh, 1.5rem);
	border-bottom: 1px solid var(--color-border-glass);
}

.shows__head-main {
	flex: 1;
	min-width: 0;
	max-width: 640px;
}

.shows__head-aside {
	flex-shrink: 0;
}

.shows__label {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-accent);
	margin-bottom: 0.85rem;
}

.shows__label-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--color-accent);
	box-shadow: 0 0 10px var(--color-accent);
	animation: shows-pulse 2s ease-in-out infinite;
}

@keyframes shows-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.55; transform: scale(0.85); }
}

.shows__title {
	margin: 0 0 0.75rem;
	font-size: clamp(2.1rem, 5vw, 3.6rem);
	line-height: 1.02;
	font-weight: 800;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: var(--color-white);
	max-width: 14ch;
}

.shows__word {
	display: inline-block;
	overflow: hidden;
	vertical-align: top;
}

.shows__char {
	display: inline-block;
	overflow: hidden;
}

.shows__word-inner {
	display: inline-block;
}

.shows__title-accent {
	color: var(--color-accent);
	text-shadow: 0 0 28px var(--color-accent-glow);
}

.shows__description {
	margin: 0;
	max-width: 46ch;
	color: var(--color-text-muted);
	font-size: clamp(0.92rem, 2vw, 1.05rem);
	line-height: 1.7;
}

.shows__stats {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.55rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.shows__stat {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	padding: 0.65rem 0.9rem;
	min-width: 5.5rem;
	border-radius: calc(var(--radius-md) - 2px);
	border: 1px solid var(--color-border-glass);
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(8px);
}

.shows__stat--accent {
	border-color: rgba(214, 255, 47, 0.22);
	background: rgba(214, 255, 47, 0.06);
}

.shows__stat-icon {
	width: 0.85rem;
	height: 0.85rem;
	color: var(--color-accent);
	margin-bottom: 0.15rem;
}

.shows__stat-label {
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.shows__stat-value {
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--color-white);
	line-height: 1.2;
}

/* ================= Stage (bento) ================= */
.shows__stage {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) auto minmax(0, 1.08fr);
	gap: 0;
	align-items: stretch;
	min-height: var(--shows-upcoming-min-h);
}

.shows__col {
	min-height: 100%;
	min-width: 0;
}

.shows__col--upcoming {
	display: flex;
	position: relative;
	overflow: hidden;
	isolation: isolate;
	z-index: 1;
}

.shows__col--archive {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	position: relative;
	z-index: 2;
	isolation: isolate;
}

.shows__divider {
	position: relative;
	width: 1px;
	margin-inline: clamp(0.85rem, 2vw, 1.35rem);
	align-self: stretch;
}

.shows__divider-line {
	position: absolute;
	inset: 8% 0;
	width: 1px;
	background: linear-gradient(to bottom, transparent, rgba(214, 255, 47, 0.35) 30%, rgba(255, 255, 255, 0.12) 70%, transparent);
}

.shows__divider-glow {
	position: absolute;
	top: 35%;
	left: 50%;
	width: 3px;
	height: 28%;
	transform: translateX(-50%);
	background: var(--color-accent);
	border-radius: 999px;
	filter: blur(4px);
	opacity: 0.45;
	animation: shows-divider-glow 3s ease-in-out infinite;
}

@keyframes shows-divider-glow {
	0%, 100% { opacity: 0.25; transform: translateX(-50%) scaleY(0.85); }
	50% { opacity: 0.65; transform: translateX(-50%) scaleY(1.1); }
}

/* ================= Upcoming (cinematic poster) ================= */
.shows__upcoming {
	position: relative;
	flex: 1;
	min-height: 100%;
}

.shows__upcoming-frame {
	position: relative;
	height: 100%;
	min-height: var(--shows-upcoming-min-h);
	border-radius: calc(var(--radius-md) + 6px);
	overflow: hidden;
	border: 1px solid var(--color-border-glass);
	background: rgba(255, 255, 255, 0.02);
}

.shows__upcoming-scene {
	position: relative;
	width: 100%;
	height: 100%;
}

.shows__upcoming-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.04);
	transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s ease;
}

.shows__upcoming:hover .shows__upcoming-img {
	transform: scale(1.09);
	filter: brightness(0.92);
}

.shows__upcoming-fallback {
	display: grid;
	place-items: center;
	position: absolute;
	inset: 0;
	color: var(--color-accent);
	opacity: 0.45;
	font-size: 3rem;
	background: radial-gradient(circle at 50% 40%, rgba(214, 255, 47, 0.08), transparent 60%);
}

.shows__upcoming-scan {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent 42%, rgba(214, 255, 47, 0.1) 50%, transparent 58%);
	background-size: 100% 240%;
	animation: shows-scan 5s linear infinite;
	pointer-events: none;
}

@keyframes shows-scan {
	to { background-position: 0 240%; }
}

.shows__upcoming-vignette {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.35) 38%, transparent 68%),
		linear-gradient(to right, rgba(0, 0, 0, 0.55) 0%, transparent 45%);
}

.shows__upcoming-spotlight {
	position: absolute;
	top: -20%;
	left: 20%;
	width: 60%;
	height: 55%;
	background: radial-gradient(ellipse at center, rgba(214, 255, 47, 0.12) 0%, transparent 68%);
	opacity: 0.7;
	pointer-events: none;
}

.shows__date-ticket {
	position: absolute;
	top: clamp(1rem, 2.5vh, 1.5rem);
	right: clamp(1rem, 2.5vw, 1.5rem);
	z-index: 2;
	display: grid;
	justify-items: center;
	line-height: 1;
	padding: 0.85rem 1rem 0.95rem;
	min-width: 4.5rem;
	background: rgba(10, 10, 10, 0.82);
	border: 1px dashed rgba(214, 255, 47, 0.45);
	border-radius: 0.65rem;
	transform: rotate(4deg);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(10px);
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.shows__upcoming:hover .shows__date-ticket {
	transform: rotate(0deg) scale(1.03);
}

.shows__date-ticket-notch {
	position: absolute;
	top: 50%;
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 50%;
	background: var(--color-bg-primary, #0a0a0a);
	transform: translateY(-50%);
}

.shows__date-ticket-notch--l { left: -0.28rem; }
.shows__date-ticket-notch--r { right: -0.28rem; }

.shows__date-month,
.shows__date-year {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-accent);
}

.shows__date-day {
	font-size: 2.35rem;
	font-weight: 800;
	color: var(--color-white);
	margin-block: 0.2rem;
	line-height: 0.95;
}

.shows__upcoming-panel {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: clamp(1rem, 2.5vw, 1.5rem);
}

.shows__upcoming-panel-inner {
	padding: clamp(1rem, 2vw, 1.35rem);
	border-radius: calc(var(--radius-md) + 2px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(8, 8, 8, 0.55);
	backdrop-filter: blur(16px);
	box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.35);
}

.shows__upcoming-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.35rem 0.7rem;
	border-radius: var(--radius-pill);
	background: rgba(214, 255, 47, 0.12);
	border: 1px solid rgba(214, 255, 47, 0.28);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-accent);
	margin-bottom: 0.65rem;
}

.shows__upcoming-badge-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--color-accent);
	animation: shows-pulse 1.6s ease-in-out infinite;
}

.shows__upcoming-title {
	margin: 0 0 0.65rem;
	font-size: clamp(1.4rem, 2.8vw, 2.15rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.08;
	color: var(--color-white);
}

.shows__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0 0 0.75rem;
	padding: 0;
	list-style: none;
}

.shows__meta-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.35rem 0.65rem;
	border-radius: var(--radius-pill);
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
	font-size: 0.78rem;
	color: var(--color-text-muted);
}

.shows__meta-icon {
	width: 0.85rem;
	height: 0.85rem;
	color: var(--color-accent);
	flex-shrink: 0;
}

.shows__upcoming-excerpt {
	margin: 0 0 0.85rem;
	font-size: 0.88rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.72);
	max-width: 38ch;
}

.shows__ticket {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
}

.shows__ticket-icon,
.shows__ticket-arrow {
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
}

.shows__ticket-arrow {
	opacity: 0.7;
	transition: transform 0.3s ease;
}

.shows__ticket:hover .shows__ticket-arrow {
	transform: translateX(3px);
}

.shows__upcoming-corner {
	position: absolute;
	width: 2.5rem;
	height: 2.5rem;
	pointer-events: none;
	z-index: 3;
}

.shows__upcoming-corner--tl {
	top: 0.85rem;
	left: 0.85rem;
	border-top: 2px solid rgba(214, 255, 47, 0.5);
	border-left: 2px solid rgba(214, 255, 47, 0.5);
}

.shows__upcoming-corner--br {
	right: 0.85rem;
	bottom: 0.85rem;
	border-right: 2px solid rgba(214, 255, 47, 0.25);
	border-bottom: 2px solid rgba(214, 255, 47, 0.25);
}

.shows__upcoming--empty,
.shows__archive-empty {
	display: grid;
	place-content: center;
	justify-items: center;
	gap: 0.65rem;
	flex: 1;
	min-height: min(52vh, 480px);
	padding: 2rem;
	border: 1px dashed var(--color-border-glass);
	border-radius: calc(var(--radius-md) + 4px);
	text-align: center;
	color: var(--color-text-muted);
	background: rgba(255, 255, 255, 0.02);
}

.shows__empty-icon {
	display: grid;
	place-items: center;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: rgba(214, 255, 47, 0.08);
	color: var(--color-accent);
	opacity: 0.75;
}

.shows__empty-title {
	margin: 0;
	font-weight: 700;
	color: var(--color-white);
}

.shows__empty-text {
	margin: 0;
	font-size: 0.9rem;
	max-width: 28ch;
}

/* ================= Archive column ================= */
.shows__archive-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
}

.shows__archive-label {
	margin: 0 0 0.2rem;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-white);
}

.shows__archive-sub {
	margin: 0;
	font-size: 0.82rem;
	color: var(--color-text-muted);
}

.shows__archive-count {
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 800;
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 1px rgba(214, 255, 47, 0.45);
	opacity: 0.9;
}

.shows__archive-body {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	flex: 1;
	min-height: 0;
	position: relative;
	z-index: 1;
}

.shows__archive-stage {
	flex: 1;
	min-height: 0;
}

.shows__featured-past {
	position: relative;
	height: 100%;
	min-height: var(--shows-featured-min-h);
	border-radius: calc(var(--radius-md) + 4px);
	overflow: hidden;
	border: 1px solid var(--color-border-glass);
	background: rgba(255, 255, 255, 0.02);
}

.shows__featured-past-media {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: inherit;
}

.shows__featured-past-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.75s ease, filter 0.75s ease;
}

.shows__featured-past-fallback {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: var(--color-accent);
	opacity: 0.45;
	font-size: 2.5rem;
	background: rgba(255, 255, 255, 0.03);
}

.shows__featured-past-no-video {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	margin: 0;
	padding: 0.65rem 0.9rem;
	border-radius: var(--radius-pill);
	background: rgba(0, 0, 0, 0.72);
	border: 1px solid var(--color-border-glass);
	font-size: 0.78rem;
	color: var(--color-text-muted);
	text-align: center;
	max-width: 16rem;
	z-index: 2;
}

.shows__featured-past:hover .shows__featured-past-img {
	transform: scale(1.05);
	filter: brightness(0.88) saturate(1.08);
}

.shows__featured-past-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.35) 42%, transparent 72%),
		linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, transparent 55%);
}

.shows__featured-past-grain {
	position: absolute;
	inset: 0;
	z-index: 2;
	opacity: 0.06;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
	pointer-events: none;
}

.shows__play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: var(--shows-play-size);
	height: var(--shows-play-size);
	border: 0;
	padding: 0;
	background: transparent;
	cursor: pointer;
	z-index: 5;
	touch-action: manipulation;
}

.shows__play[hidden],
.shows__featured-past-no-video[hidden] {
	display: none !important;
}

.shows__play-core {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: rgba(214, 255, 47, 0.95);
	color: #0a0a0a;
	box-shadow: 0 0 0 6px rgba(214, 255, 47, 0.15);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.shows__play:hover .shows__play-core {
	transform: scale(1.07);
	box-shadow: 0 0 0 10px rgba(214, 255, 47, 0.2), 0 0 40px rgba(214, 255, 47, 0.35);
}

.shows__play-icon {
	width: 1.35rem;
	height: 1.35rem;
	margin-left: 0.15rem;
	fill: currentColor;
}

.shows__play-ring {
	position: absolute;
	inset: -10px;
	border-radius: 50%;
	border: 1px solid rgba(214, 255, 47, 0.35);
	animation: shows-ring 2.4s ease-out infinite;
}

.shows__play-ring--2 {
	animation-delay: -1.2s;
}

@keyframes shows-ring {
	0% { transform: scale(0.85); opacity: 0.8; }
	100% { transform: scale(1.4); opacity: 0; }
}

.shows__featured-past-caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 4;
	padding: clamp(1rem, 2.5vw, 1.5rem);
	text-align: center;
	pointer-events: none;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.45) 55%, transparent 100%);
}

.shows__featured-past-caption > * {
	pointer-events: auto;
}

.shows__featured-past-excerpt {
	margin: 0.55rem auto 0;
	max-width: 42ch;
	font-size: 0.82rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.72);
}

.shows__featured-past-excerpt[hidden] {
	display: none !important;
}

.shows__featured-past-badge {
	display: inline-block;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-accent);
	margin-bottom: 0.35rem;
	text-align: center;
}

.shows__featured-past-title {
	margin: 0 0 0.35rem;
	font-size: clamp(1rem, 2vw, 1.35rem);
	font-weight: 800;
	color: var(--color-white);
	line-height: 1.15;
	text-align: center;
}

.shows__featured-past-meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.65rem 1rem;
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.65);
}

.shows__featured-past-meta time[hidden],
.shows__featured-past-loc[hidden] {
	display: none !important;
}

.shows__featured-past-meta time:not([hidden]) + .shows__featured-past-loc::before {
	content: '·';
	margin-right: 0.65rem;
	opacity: 0.5;
}

/* ================= Filmstrip (horizontal reel) ================= */
.shows__filmstrip {
	flex-shrink: 0;
}

.shows__filmstrip-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.55rem;
	padding-inline: 0.15rem;
}

.shows__filmstrip-label {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.shows__filmstrip-hint {
	font-size: 0.68rem;
	color: rgba(255, 255, 255, 0.35);
}

.shows__filmstrip-wrap {
	position: relative;
}

.shows__filmstrip-wrap::before,
.shows__filmstrip-wrap::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0.85rem;
	width: clamp(1rem, 4vw, 2.5rem);
	z-index: 2;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.shows__filmstrip-wrap::before {
	left: 0;
	background: linear-gradient(to right, var(--color-bg-primary, #0a0a0a) 0%, transparent 100%);
}

.shows__filmstrip-wrap::after {
	right: 0;
	background: linear-gradient(to left, var(--color-bg-primary, #0a0a0a) 0%, transparent 100%);
}

.shows__filmstrip-wrap.is-scrollable::before,
.shows__filmstrip-wrap.is-scrollable::after {
	opacity: 1;
}

.shows__filmstrip-rail {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0.35rem;
	height: 2px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	z-index: 1;
	pointer-events: none;
}

.shows__filmstrip-indicator {
	display: block;
	height: 100%;
	width: 5.5rem;
	background: var(--color-accent);
	border-radius: inherit;
	box-shadow: 0 0 12px var(--color-accent);
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), width 0.35s ease;
}

.shows__filmstrip-track {
	display: flex;
	gap: 0.75rem;
	margin: 0;
	padding: 0 0 0.85rem;
	list-style: none;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scrollbar-width: thin;
	-webkit-overflow-scrolling: touch;
}

.shows__filmstrip-track::-webkit-scrollbar {
	height: 4px;
}

.shows__filmstrip-track::-webkit-scrollbar-thumb {
	background: rgba(214, 255, 47, 0.35);
	border-radius: 999px;
}

.shows__film-item {
	flex: 0 0 auto;
	scroll-snap-align: start;
}

.shows__film-btn {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	width: var(--shows-film-width);
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	text-align: left;
	position: relative;
	cursor: pointer;
}

.shows__film-index {
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--color-text-muted);
	transition: color 0.3s ease;
}

.shows__film-poster {
	position: relative;
	aspect-ratio: 3 / 4;
	border-radius: 0.65rem;
	overflow: hidden;
	border: 1px solid var(--color-border-glass);
	background: rgba(255, 255, 255, 0.04);
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.shows__film-thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease, filter 0.5s ease;
}

.shows__film-thumb-fallback {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	color: var(--color-accent);
	opacity: 0.55;
}

.shows__film-shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, transparent 42%);
	opacity: 0;
	transition: opacity 0.35s ease;
	pointer-events: none;
}

.shows__film-eq {
	position: absolute;
	left: 0.45rem;
	bottom: 0.45rem;
	display: flex;
	align-items: flex-end;
	gap: 2px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.shows__film-eq span {
	width: 2px;
	height: 10px;
	background: var(--color-accent);
	border-radius: 999px;
	animation: shows-eq 0.9s ease-in-out infinite;
}

.shows__film-eq span:nth-child(2) { animation-delay: -0.2s; height: 14px; }
.shows__film-eq span:nth-child(3) { animation-delay: -0.4s; height: 8px; }

.shows__film-play {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: rgba(0, 0, 0, 0.35);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.shows__film-play-icon {
	width: 1.1rem;
	height: 1.1rem;
	color: var(--color-accent);
}

.shows__film-info {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	min-width: 0;
}

.shows__film-title {
	display: block;
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--color-white);
	line-height: 1.25;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.shows__film-date {
	font-size: 0.68rem;
	color: var(--color-text-muted);
}

.shows__film-btn:hover .shows__film-poster {
	transform: translateY(-4px);
	border-color: rgba(255, 255, 255, 0.18);
}

.shows__film-btn:hover .shows__film-thumb {
	transform: scale(1.06);
}

.shows__film-btn:hover .shows__film-shine,
.shows__film-btn:hover .shows__film-play {
	opacity: 1;
}

.shows__film-item--active .shows__film-index {
	color: var(--color-accent);
}

.shows__film-item--active .shows__film-poster {
	border-color: rgba(214, 255, 47, 0.45);
	box-shadow: 0 8px 28px rgba(214, 255, 47, 0.15);
	transform: translateY(-6px) scale(1.02);
}

.shows__film-item--active .shows__film-eq {
	opacity: 1;
}

.shows__film-item--no-video .shows__film-play {
	opacity: 0.35;
}

.shows__film-item--no-video .shows__film-btn::after {
	content: 'No video';
	position: absolute;
	top: 0.35rem;
	right: 0.35rem;
	padding: 0.15rem 0.4rem;
	border-radius: var(--radius-pill);
	font-size: 0.55rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: rgba(0, 0, 0, 0.72);
	color: rgba(255, 255, 255, 0.55);
	pointer-events: none;
}

@keyframes shows-eq {
	0%, 100% { transform: scaleY(0.45); }
	50% { transform: scaleY(1); }
}

/* ================= Modal ================= */
.shows__modal {
	position: fixed;
	inset: 0;
	z-index: 120;
	display: grid;
	place-items: center;
	padding: clamp(1rem, 3vw, 1.75rem);
}

.shows__modal[hidden] {
	display: none !important;
}

.shows__modal-backdrop {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 50% 35%, rgba(214, 255, 47, 0.08) 0%, transparent 55%),
		rgba(0, 0, 0, 0.88);
	backdrop-filter: blur(14px);
	animation: shows-modal-backdrop-in 0.35s ease;
}

@keyframes shows-modal-backdrop-in {
	from { opacity: 0; }
	to { opacity: 1; }
}

.shows__modal-panel {
	position: relative;
	width: min(1040px, 100%);
	border-radius: calc(var(--radius-md) + 8px);
	overflow: hidden;
	border: 1px solid rgba(214, 255, 47, 0.18);
	background:
		linear-gradient(145deg, rgba(18, 18, 18, 0.98) 0%, rgba(8, 8, 8, 0.99) 100%);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.04) inset,
		0 28px 90px rgba(0, 0, 0, 0.65),
		0 0 60px rgba(214, 255, 47, 0.08);
}

.shows__modal-glow {
	position: absolute;
	inset: -40% -20% auto;
	height: 55%;
	background: radial-gradient(circle at 50% 0%, rgba(214, 255, 47, 0.16) 0%, transparent 68%);
	pointer-events: none;
	z-index: 0;
}

.shows__modal-corner {
	position: absolute;
	width: 2.25rem;
	height: 2.25rem;
	pointer-events: none;
	z-index: 2;
}

.shows__modal-corner--tl {
	top: 0.85rem;
	left: 0.85rem;
	border-top: 2px solid rgba(214, 255, 47, 0.55);
	border-left: 2px solid rgba(214, 255, 47, 0.55);
}

.shows__modal-corner--br {
	right: 0.85rem;
	bottom: 0.85rem;
	border-right: 2px solid rgba(214, 255, 47, 0.28);
	border-bottom: 2px solid rgba(214, 255, 47, 0.28);
}

.shows__modal-head {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.15rem 0.95rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.03), transparent);
}

.shows__modal-head-main {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	min-width: 0;
}

.shows__modal-badge {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 0.28rem 0.6rem;
	border-radius: var(--radius-pill);
	background: rgba(214, 255, 47, 0.1);
	border: 1px solid rgba(214, 255, 47, 0.28);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-accent);
}

.shows__modal-title {
	margin: 0;
	font-size: clamp(0.95rem, 2vw, 1.15rem);
	font-weight: 800;
	letter-spacing: -0.01em;
	color: var(--color-white);
	line-height: 1.25;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: min(52ch, 70vw);
}

.shows__modal-close {
	flex-shrink: 0;
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	color: var(--color-white);
	cursor: pointer;
	transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.shows__modal-close:hover {
	background: rgba(214, 255, 47, 0.12);
	border-color: rgba(214, 255, 47, 0.35);
	transform: scale(1.04);
}

.shows__modal-close-icon {
	width: 1rem;
	height: 1rem;
}

.shows__modal-frame {
	position: relative;
	z-index: 1;
	aspect-ratio: 16 / 9;
	background:
		radial-gradient(circle at 50% 40%, rgba(214, 255, 47, 0.04) 0%, transparent 55%),
		#000;
}

.shows__modal-loader,
.shows__modal-error {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: grid;
	place-content: center;
	justify-items: center;
	gap: 0.85rem;
	padding: 1.5rem;
	text-align: center;
	background: rgba(0, 0, 0, 0.72);
	backdrop-filter: blur(4px);
}

.shows__modal-loader[hidden],
.shows__modal-error[hidden] {
	display: none !important;
}

.shows__modal-loader-ring {
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.12);
	border-top-color: var(--color-accent);
	animation: shows-modal-spin 0.85s linear infinite;
}

@keyframes shows-modal-spin {
	to { transform: rotate(360deg); }
}

.shows__modal-loader-text {
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.shows__modal-error-text {
	margin: 0;
	max-width: 28ch;
	font-size: 0.88rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.78);
}

.shows__modal-error-link {
	margin-top: 0.25rem;
}

.shows__modal-iframe,
.shows__modal-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.shows__modal-iframe {
	border: 0;
}

.shows__modal-video {
	background: #000;
	object-fit: contain;
}

.shows__modal-iframe[hidden],
.shows__modal-video[hidden] {
	display: none !important;
}

body.is-shows-modal-open {
	overflow: hidden;
}

/* ================= Responsive ================= */

/* Large desktop — balanced bento proportions */
@media (min-width: 1440px) {
	.shows__stage {
		grid-template-columns: minmax(0, 0.88fr) auto minmax(0, 1.12fr);
		min-height: min(68vh, 820px);
	}

	.shows__title {
		max-width: 16ch;
	}
}

/* Compact laptop */
@media (max-width: 1280px) {
	.shows {
		--shows-play-size: clamp(4rem, 8vw, 4.75rem);
		--shows-featured-min-h: min(40vh, 400px);
	}

	.shows__head {
		gap: clamp(1rem, 3vw, 2rem);
	}

	.shows__stat {
		min-width: 5rem;
		padding: 0.55rem 0.75rem;
	}
}

/* Tablet landscape — stack stage columns */
@media (max-width: 1100px) {
	.shows {
		min-height: auto;
		align-items: stretch;
		--shows-upcoming-min-h: min(52vh, 520px);
		--shows-featured-min-h: min(44vh, 400px);
	}

	.shows__stage {
		grid-template-columns: 1fr;
		min-height: auto;
		gap: var(--shows-stage-gap);
	}

	.shows__divider {
		display: none;
	}

	.shows__col--upcoming {
		order: 1;
	}

	.shows__col--archive {
		order: 2;
	}

	.shows__upcoming-frame {
		min-height: var(--shows-upcoming-min-h);
	}

	.shows__featured-past {
		min-height: var(--shows-featured-min-h);
	}

	.shows__head {
		flex-direction: column;
		align-items: flex-start;
	}

	.shows__stats {
		justify-content: flex-start;
		width: 100%;
	}

	.shows__marquee--upcoming {
		bottom: 4%;
		opacity: 0.1;
	}
}

/* Tablet portrait */
@media (max-width: 900px) {
	.shows {
		--shows-section-pad-y: clamp(2rem, 5vh, 3.5rem);
		--shows-film-width: clamp(6.5rem, 22vw, 8.5rem);
	}

	.shows__title {
		max-width: none;
		font-size: clamp(1.85rem, 7vw, 2.75rem);
	}

	.shows__description {
		max-width: 38ch;
	}

	.shows__stats {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(7.5rem, 1fr));
		gap: 0.5rem;
	}

	.shows__stat {
		min-width: 0;
	}

	.shows__archive-head {
		align-items: center;
	}

	.shows__archive-count {
		font-size: clamp(1.65rem, 5vw, 2.25rem);
	}

	.shows__filmstrip-head {
		flex-wrap: wrap;
	}

	.shows__filmstrip-hint {
		flex: 1 1 100%;
	}
}

/* Large phones / small tablets */
@media (max-width: 768px) {
	.shows {
		--shows-play-size: clamp(3.75rem, 14vw, 4.5rem);
		--shows-upcoming-min-h: min(48vh, 460px);
		--shows-featured-min-h: min(40vh, 340px);
	}

	.shows__inner {
		padding-block: calc(var(--shows-section-pad-y) + env(safe-area-inset-top, 0px)) calc(var(--shows-section-pad-y) + env(safe-area-inset-bottom, 0px));
	}

	.shows__head {
		margin-bottom: clamp(1.25rem, 3vh, 2rem);
		padding-bottom: 1rem;
	}

	.shows__upcoming-panel-inner {
		padding: 0.95rem 1rem;
	}

	.shows__upcoming-title {
		font-size: clamp(1.15rem, 4.5vw, 1.45rem);
	}

	.shows__meta {
		flex-wrap: wrap;
	}

	.shows__ticket {
		width: 100%;
		justify-content: center;
		min-height: var(--shows-touch-min);
	}

	.shows__featured-past-title {
		font-size: clamp(0.95rem, 3.8vw, 1.2rem);
	}

	.shows__featured-past-excerpt {
		font-size: 0.78rem;
		max-width: 36ch;
	}

	.shows__filmstrip-wrap::before,
	.shows__filmstrip-wrap::after {
		opacity: 1;
	}

	.shows__filmstrip-track {
		gap: 0.65rem;
		padding-inline: 0.15rem;
		scroll-padding-inline: 0.15rem;
	}

	.shows__film-btn {
		min-height: var(--shows-touch-min);
	}

	.shows__modal {
		padding: 0.75rem;
		padding-top: calc(0.75rem + env(safe-area-inset-top, 0px));
		padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
		align-items: flex-end;
	}

	.shows__modal-panel {
		width: 100%;
		border-radius: calc(var(--radius-md) + 4px) calc(var(--radius-md) + 4px) 0 0;
		max-height: calc(100dvh - 1.5rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
		overflow-y: auto;
	}

	.shows__modal-frame {
		aspect-ratio: 16 / 10;
		min-height: 220px;
	}

	.shows__modal-close {
		width: var(--shows-touch-min);
		height: var(--shows-touch-min);
	}
}

/* Mobile */
@media (max-width: 640px) {
	.shows {
		--shows-section-pad-x: max(1rem, env(safe-area-inset-left, 0px));
		--shows-play-size: 4rem;
		--shows-upcoming-min-h: min(44vh, 420px);
		--shows-featured-min-h: min(36vh, 300px);
		--shows-film-width: 7.25rem;
	}

	.shows__label {
		font-size: 0.68rem;
		margin-bottom: 0.65rem;
	}

	.shows__title {
		font-size: clamp(1.65rem, 8.5vw, 2.2rem);
		letter-spacing: -0.02em;
	}

	.shows__description {
		font-size: 0.9rem;
		line-height: 1.65;
	}

	.shows__date-ticket {
		transform: rotate(0deg);
		top: 0.85rem;
		right: 0.85rem;
		padding: 0.65rem 0.75rem;
	}

	.shows__date-day {
		font-size: 1.85rem;
	}

	.shows__upcoming-excerpt {
		font-size: 0.85rem;
		line-height: 1.6;
	}

	.shows__featured-past-caption {
		padding: 0.85rem 1rem 1rem;
	}

	.shows__featured-past-badge {
		font-size: 0.58rem;
	}

	.shows__featured-past-meta {
		font-size: 0.72rem;
	}

	.shows__filmstrip-label {
		font-size: 0.64rem;
	}

	.shows__filmstrip-hint {
		display: none;
	}

	.shows__film-index {
		font-size: 0.6rem;
	}

	.shows__film-title {
		font-size: 0.74rem;
	}

	.shows__film-date {
		font-size: 0.64rem;
	}

	.shows__upcoming--empty,
	.shows__archive-empty {
		min-height: min(38vh, 320px);
		padding: 1.5rem 1rem;
	}

	.shows__modal-head {
		padding: 0.85rem 0.95rem;
	}

	.shows__modal-title {
		white-space: normal;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		max-width: none;
	}
}

/* Small mobile */
@media (max-width: 480px) {
	.shows {
		--shows-play-size: 3.75rem;
		--shows-film-width: 6.75rem;
		--shows-upcoming-min-h: min(42vh, 380px);
		--shows-featured-min-h: min(34vh, 280px);
	}

	.shows__stats {
		grid-template-columns: 1fr 1fr;
	}

	.shows__stat--accent {
		grid-column: 1 / -1;
	}

	.shows__play-core {
		box-shadow: 0 0 0 5px rgba(214, 255, 47, 0.12);
	}

	.shows__play-icon {
		width: 1.15rem;
		height: 1.15rem;
	}

	.shows__film-item--no-video .shows__film-btn::after {
		font-size: 0.5rem;
		top: 0.25rem;
		right: 0.25rem;
	}

	.shows__modal {
		padding: 0;
	}

	.shows__modal-panel {
		border-radius: 0;
		max-height: 100dvh;
		height: 100%;
		display: flex;
		flex-direction: column;
	}

	.shows__modal-frame {
		flex: 1;
		aspect-ratio: auto;
		min-height: 0;
	}
}

/* Touch devices — stronger affordances */
@media (hover: none) and (pointer: coarse) {
	.shows__film-btn:hover .shows__film-poster {
		transform: none;
		border-color: var(--color-border-glass);
	}

	.shows__film-item--active .shows__film-poster {
		transform: translateY(-4px) scale(1.01);
	}

	.shows__film-play {
		opacity: 0.65;
	}

	.shows__film-item--active .shows__film-play {
		opacity: 1;
	}

	.shows__play-ring {
		animation-duration: 3s;
	}

	.shows__upcoming:hover .shows__upcoming-img {
		transform: scale(1.04);
		filter: none;
	}
}

/* Landscape phones — side-by-side feel when tall enough */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 520px) {
	.shows {
		min-height: auto;
		--shows-section-pad-y: 1.25rem;
		--shows-upcoming-min-h: min(72vh, 340px);
		--shows-featured-min-h: min(58vh, 280px);
	}

	.shows__stage {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 1rem;
		align-items: stretch;
	}

	.shows__col--upcoming,
	.shows__col--archive {
		order: unset;
	}

	.shows__head {
		flex-direction: row;
		align-items: flex-end;
		margin-bottom: 1rem;
	}

	.shows__stats {
		display: flex;
		flex-wrap: nowrap;
		justify-content: flex-end;
		width: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.shows__ambient-grid,
	.shows__ambient-orb,
	.shows__ambient-beam,
	.shows__marquee-track,
	.shows__upcoming-scan,
	.shows__play-ring,
	.shows__film-eq span,
	.shows__label-dot,
	.shows__upcoming-badge-dot,
	.shows__divider-glow {
		animation: none !important;
	}
}
