:root {
	--brand: #f9a61c;
	--brand-deep: #d88c12;
	--ink: #2a1d08;
	--muted: #67553c;
	--surface: #fffaf1;
	--surface-strong: #ffffff;
	--line: rgba(104, 78, 36, 0.16);
	--shadow: 0 22px 50px rgba(85, 57, 16, 0.12);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Inter", sans-serif;
	color: var(--ink);
	background:
		radial-gradient(circle at top left, rgba(249, 166, 28, 0.22), transparent 32%),
		radial-gradient(circle at bottom right, rgba(216, 140, 18, 0.12), transparent 28%),
		linear-gradient(180deg, #fff8e8 0%, #fffdf8 42%, #fff7ea 100%);
}

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

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

.site-shell {
	width: min(1180px, calc(100% - 2rem));
	margin: 0 auto;
}

.narrow-shell {
	width: min(980px, calc(100% - 2rem));
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(249, 166, 28, 0.96);
	border-bottom: 1px solid rgba(130, 86, 18, 0.15);
	backdrop-filter: blur(10px);
}

.header-shell {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 0;
}

.brand img {
	width: min(100%, 360px);
	max-height: 86px;
	object-fit: contain;
}

.site-main {
	padding: 2rem 0 4rem;
}

.hero-section .site-shell {
	display: grid;
	gap: 1.75rem;
}

.hero-copy {
	text-align: center;
	padding-top: 1.25rem;
}

.eyebrow {
	margin: 0 0 0.75rem;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--brand-deep);
}

.hero-copy h1,
.section-heading h2 {
	margin: 0;
	font-family: "Marcellus", serif;
	font-weight: 400;
	line-height: 1.08;
}

.hero-copy h1 {
	font-size: clamp(2.2rem, 6vw, 4.4rem);
}

.hero-text {
	width: min(760px, 100%);
	margin: 1rem auto 0;
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--muted);
}

.live-player-card,
.content-card,
.gallery-card {
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
}

.live-player-card {
	padding: 1.2rem;
	border-radius: 1.7rem;
}

.player-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.player-label {
	margin: 0 0 0.4rem;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--brand-deep);
}

.player-card-top h2 {
	margin: 0;
	font-size: clamp(1.3rem, 3vw, 1.8rem);
}

.live-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.55rem 0.95rem;
	border-radius: 999px;
	background: #c82f20;
	color: #fff;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.14em;
}

.player-frame {
	overflow: hidden;
	border-radius: 1.15rem;
	background: #0d0d0d;
}

.video-js {
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
}

.video-js .vjs-big-play-button {
	border: 0;
	border-radius: 999px;
	background: rgba(249, 166, 28, 0.95);
}

.video-js:hover .vjs-big-play-button,
.video-js .vjs-big-play-button:focus {
	background: rgba(216, 140, 18, 0.95);
}

.player-note {
	margin: 0.95rem 0 0;
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--muted);
}

.content-section {
	padding-top: 3.2rem;
}

.section-heading {
	text-align: center;
	margin-bottom: 1.4rem;
}

.section-heading h2 {
	font-size: clamp(1.9rem, 4.5vw, 3rem);
}

.content-card {
	padding: clamp(1.35rem, 3vw, 2rem);
	border-radius: 1.5rem;
}

.content-card p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.9;
	color: var(--muted);
}

.content-card p + p {
	margin-top: 1rem;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
}

.gallery-card {
	margin: 0;
	padding: 0.9rem;
	border-radius: 1.35rem;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gallery-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 28px 54px rgba(85, 57, 16, 0.18);
}

.gallery-card__image {
	overflow: hidden;
	border-radius: 1rem;
	background: linear-gradient(180deg, #fff2d4 0%, #fff9ec 100%);
}

.gallery-card__image img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.gallery-card figcaption {
	padding: 0.95rem 0.3rem 0.2rem;
	font-size: 0.96rem;
	font-weight: 600;
	line-height: 1.5;
	text-align: center;
	color: var(--ink);
}

.site-footer {
	padding: 0 0 2rem;
}

.footer-shell {
	padding-top: 1.2rem;
	border-top: 1px solid rgba(130, 86, 18, 0.14);
	text-align: center;
	color: var(--muted);
}

@media (max-width: 991px) {
	.gallery-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.site-shell,
	.narrow-shell {
		width: min(100% - 1.2rem, 100%);
	}

	.site-main {
		padding-top: 1.25rem;
	}

	.header-shell {
		padding: 0.8rem 0;
	}

	.brand img {
		max-height: 70px;
	}

	.live-player-card,
	.content-card {
		border-radius: 1.2rem;
	}

	.player-card-top {
		flex-direction: column;
		align-items: flex-start;
	}

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

	.gallery-card {
		padding: 0.7rem;
		border-radius: 1rem;
	}

	.gallery-card figcaption {
		font-size: 0.88rem;
	}
}
