/* Home page — show cards (matches contact page aesthetic) */

.home_page {
	float: none;
	clear: both;
	width: 100%;
	max-width: 1160px;
	margin: 1.5rem auto 2.5rem;
}

.home_hero_banner {
	position: relative;
	display: block;
	width: 100%;
	max-width: 350px;
	margin: 0 auto;
	overflow: hidden;
	background: #120504;
}

.home_hero_banner_video {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
	object-position: center;
	background: #120504;
}

.home_hero_banner:fullscreen,
.home_hero_banner:-webkit-full-screen {
	width: 100%;
	max-width: none;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: #000;
	display: flex;
	justify-content: center;
	align-items: center;
}

.home_hero_banner:fullscreen .home_hero_banner_video,
.home_hero_banner:-webkit-full-screen .home_hero_banner_video {
	width: auto;
	max-width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.home_hero_controls {
	position: absolute;
	right: 0.85rem;
	bottom: 0.85rem;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.45rem;
}

.home_hero_ctrl_btn {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin: 0;
	padding: 0.4rem 0.7rem 0.4rem 0.5rem;
	font-family: var(--font-display);
	font-size: var(--text-sm);
	font-weight: 600;
	letter-spacing: 0.06em;
	color: #fbbc53;
	background: rgba(18, 5, 4, 0.78);
	border: 1px solid rgba(212, 168, 75, 0.5);
	border-radius: 2px;
	cursor: pointer;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.home_hero_ctrl_icon {
	display: block;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	fill: currentColor;
}

.home_hero_sound_icon_on,
.home_hero_fs_icon_exit {
	display: none;
}

.home_hero_sound_btn.is-unmuted .home_hero_sound_icon_muted {
	display: none;
}

.home_hero_sound_btn.is-unmuted .home_hero_sound_icon_on {
	display: block;
}

.home_hero_fs_btn.is-fullscreen .home_hero_fs_icon_enter {
	display: none;
}

.home_hero_fs_btn.is-fullscreen .home_hero_fs_icon_exit {
	display: block;
}

.home_hero_ctrl_btn:hover,
.home_hero_ctrl_btn:focus-visible {
	color: #ffe566;
	border-color: rgba(255, 229, 102, 0.7);
}

.home_hero_ctrl_btn:focus-visible {
	outline: 2px solid #ffe566;
	outline-offset: 3px;
}

.home_show_cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.75rem;
}

.home_show_card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 1.75rem 1.55rem 1.5rem;
	background: linear-gradient(155deg, rgba(58, 22, 18, 0.94), rgba(32, 11, 9, 0.97));
	border: 1px solid rgba(212, 168, 75, 0.4);
	border-radius: 3px;
	box-shadow:
		inset 0 0 0 1px rgba(212, 168, 75, 0.12),
		0 6px 24px rgba(0, 0, 0, 0.4);
}

.home_show_card::before {
	content: '';
	position: absolute;
	inset: 7px;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(212, 168, 75, 0.75), rgba(212, 168, 75, 0.75)),
		linear-gradient(rgba(212, 168, 75, 0.75), rgba(212, 168, 75, 0.75)),
		linear-gradient(rgba(212, 168, 75, 0.75), rgba(212, 168, 75, 0.75)),
		linear-gradient(rgba(212, 168, 75, 0.75), rgba(212, 168, 75, 0.75)),
		linear-gradient(rgba(212, 168, 75, 0.75), rgba(212, 168, 75, 0.75)),
		linear-gradient(rgba(212, 168, 75, 0.75), rgba(212, 168, 75, 0.75)),
		linear-gradient(rgba(212, 168, 75, 0.75), rgba(212, 168, 75, 0.75)),
		linear-gradient(rgba(212, 168, 75, 0.75), rgba(212, 168, 75, 0.75));
	background-size:
		22px 2px,
		2px 22px,
		22px 2px,
		2px 22px,
		22px 2px,
		2px 22px,
		22px 2px,
		2px 22px;
	background-position:
		left top,
		left top,
		right top,
		right top,
		left bottom,
		left bottom,
		right bottom,
		right bottom;
	background-repeat: no-repeat;
}

.home_show_card_inner {
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	min-height: 0;
}

.home_show_title {
	margin: 0;
	padding-bottom: 0.75rem;
	font-family: var(--font-display);
	font-size: var(--text-xl);
	font-weight: 600;
	color: #fbbc53;
	letter-spacing: 0.06em;
	border-bottom: 1px solid rgba(212, 168, 75, 0.35);
}

.home_show_title::after {
	content: ' ◆';
	font-size: 0.55em;
	vertical-align: middle;
	opacity: 0.85;
}

.home_show_title_long {
	font-size: var(--text-lg);
	line-height: var(--leading-tight);
}

.home_show_media {
	display: flex;
	justify-content: center;
}

.home_show_media a,
.home-video-teaser,
.home_hero_banner {
	display: block;
	width: 100%;
	max-width: 350px;
}

.home_show_media img,
.home-video-play-btn img {
	display: block;
	width: 100%;
	max-width: 350px;
	height: auto;
	margin: 0 auto;
}

.home-video-player {
	display: none;
	width: 100%;
	max-width: 350px;
	height: auto;
	margin: 0 auto;
}

.home_show_description {
	margin: 0;
	font-size: var(--text-base);
	line-height: var(--leading-normal);
	color: #f8f4ec;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

/* CTA footer — imperial gold plaque + supporting note */
.home_show_cta {
	display: flex;
	align-items: center;
	gap: 1rem 1.25rem;
	margin-top: auto;
	padding-top: 0.9rem;
	border-top: 1px solid rgba(212, 168, 75, 0.28);
}

.home_show_cta::before {
	content: '◆';
	flex-shrink: 0;
	font-size: 0.45rem;
	color: rgba(212, 168, 75, 0.55);
	line-height: 1;
}

.home_show_btn {
	position: relative;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 1.15rem;
	font-family: var(--font-display);
	font-size: var(--text-sm);
	font-weight: 600;
	letter-spacing: 0.1em;
	text-decoration: none;
	color: #fbbc53;
	background: linear-gradient(160deg, rgba(72, 28, 20, 0.95), rgba(38, 14, 10, 0.98));
	border: 1px solid rgba(212, 168, 75, 0.5);
	border-radius: 2px;
	box-shadow:
		inset 0 1px 0 rgba(255, 229, 102, 0.12),
		0 2px 8px rgba(0, 0, 0, 0.35);
	transition:
		color 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.15s ease;
}

.home_show_btn::after {
	content: '';
	position: absolute;
	inset: 4px;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(212, 168, 75, 0.6), rgba(212, 168, 75, 0.6)),
		linear-gradient(rgba(212, 168, 75, 0.6), rgba(212, 168, 75, 0.6)),
		linear-gradient(rgba(212, 168, 75, 0.6), rgba(212, 168, 75, 0.6)),
		linear-gradient(rgba(212, 168, 75, 0.6), rgba(212, 168, 75, 0.6)),
		linear-gradient(rgba(212, 168, 75, 0.6), rgba(212, 168, 75, 0.6)),
		linear-gradient(rgba(212, 168, 75, 0.6), rgba(212, 168, 75, 0.6)),
		linear-gradient(rgba(212, 168, 75, 0.6), rgba(212, 168, 75, 0.6)),
		linear-gradient(rgba(212, 168, 75, 0.6), rgba(212, 168, 75, 0.6));
	background-size:
		10px 1px,
		1px 10px,
		10px 1px,
		1px 10px,
		10px 1px,
		1px 10px,
		10px 1px,
		1px 10px;
	background-position:
		left top,
		left top,
		right top,
		right top,
		left bottom,
		left bottom,
		right bottom,
		right bottom;
	background-repeat: no-repeat;
	opacity: 0.85;
	transition: opacity 0.2s ease;
}

.home_show_btn:hover,
.home_show_btn:focus-visible {
	color: #ffe566;
	border-color: rgba(255, 229, 102, 0.7);
	box-shadow:
		inset 0 1px 0 rgba(255, 229, 102, 0.2),
		0 3px 14px rgba(212, 168, 75, 0.25),
		0 2px 8px rgba(0, 0, 0, 0.4);
	transform: translateY(-1px);
}

.home_show_btn:hover::after,
.home_show_btn:focus-visible::after {
	opacity: 1;
}

.home_show_btn:focus-visible {
	outline: 2px solid #ffe566;
	outline-offset: 3px;
}

.home_show_cta_note {
	margin: 0;
	flex: 1;
	min-width: 0;
	font-family: var(--font-accent);
	font-size: var(--text-sm);
	font-style: italic;
	line-height: var(--leading-normal);
	color: rgba(248, 244, 236, 0.82);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.home_show_cta_em {
	font-style: normal;
	font-weight: 600;
	color: #f0d78c;
	letter-spacing: 0.03em;
}

.home-video-play-btn {
	position: relative;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	line-height: 0;
}

.home-video-play-btn img {
	object-fit: cover;
	object-position: center;
}

.home-video-play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.55);
	border: 3px solid rgba(255, 255, 255, 0.9);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
	pointer-events: none;
}

.home-video-play-icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 54%;
	transform: translate(-50%, -50%);
	border-style: solid;
	border-width: 14px 0 14px 24px;
	border-color: transparent transparent transparent #fff;
}

.home-video-play-btn:hover .home-video-play-icon,
.home-video-play-btn:focus-visible .home-video-play-icon {
	background: rgba(0, 0, 0, 0.72);
	border-color: #ffe566;
}

.home-video-play-btn:focus-visible {
	outline: 2px solid #ffe566;
	outline-offset: 4px;
}

@media (max-width: 900px) {
	.home_show_cards {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

.current_shows_page_title {
	margin: 0 0 1.75rem;
	padding-bottom: 0.75rem;
	text-align: center;
	font-family: var(--font-display);
	font-size: var(--text-2xl);
	font-weight: 600;
	color: #fbbc53;
	letter-spacing: 0.08em;
	border-bottom: 1px solid rgba(212, 168, 75, 0.35);
}

.current_shows_page_title::after {
	content: ' ◆';
	font-size: 0.45em;
	vertical-align: middle;
	opacity: 0.85;
}

@media (max-width: 640px) {
	.home_page {
		margin-top: 1rem;
	}

	.home_hero_controls {
		right: 0.45rem;
		bottom: 0.45rem;
		gap: 0.35rem;
	}

	.home_hero_ctrl_btn {
		padding: 0.35rem 0.55rem 0.35rem 0.4rem;
	}

	.home_hero_ctrl_label {
		display: none;
	}

	.home_show_card {
		padding: 1.5rem 1.2rem 1.25rem;
	}

	.home_show_cta {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.65rem;
	}

	.home_show_cta::before {
		display: none;
	}

	.home_show_btn {
		width: 100%;
		justify-content: center;
	}
}
