:root {
	--ow-black: #050505;
	--ow-panel: #101010;
	--ow-yellow: #f2df00;
	--ow-white: #fffdf5;
	--ow-gray: #deddd7;
	--ow-line: rgba(242, 223, 0, 0.28);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.oneway-page {
	margin: 0;
	background: var(--ow-black);
	color: var(--ow-white);
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.6;
}

/* Keep the One Way palette brighter than Motherlode's general dark theme. */
.oneway-page h1,
.oneway-page h2,
.oneway-page h3,
.oneway-page h4,
.oneway-page h5,
.oneway-page h6 {
	color: var(--ow-white);
}

.oneway-page a {
	color: inherit;
}

.skip-link {
	position: fixed;
	top: 0.5rem;
	left: 0.5rem;
	z-index: 100;
	transform: translateY(-150%);
	background: var(--ow-yellow);
	color: #000 !important;
	padding: 0.65rem 1rem;
}

.skip-link:focus {
	transform: translateY(0);
}

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

.site-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.85rem max(1rem, calc((100vw - 1180px) / 2));
	border-bottom: 1px solid var(--ow-line);
	background: rgba(5, 5, 5, 0.96);
}

.motherlode-mark {
	color: var(--ow-yellow) !important;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-decoration: none;
}

.site-bar nav {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.site-bar nav a {
	color: var(--ow-white);
	font-size: 0.83rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-decoration: none;
	text-transform: uppercase;
}

.site-bar nav a:hover,
.site-bar nav a:focus-visible {
	color: var(--ow-yellow);
}

.oneway-hero {
	position: relative;
	display: grid;
	place-items: end start;
	min-height: min(78vh, 840px);
	background-image: url("gfx/template.jpg");
	background-position: center 10%;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

.hero-shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.67) 48%, rgba(0, 0, 0, 0.16) 100%), linear-gradient(0deg, #050505 0%, transparent 45%);
}

.hero-copy {
	position: relative;
	z-index: 1;
	width: min(760px, calc(100% - 2rem));
	margin: 0 max(1rem, calc((100vw - 1180px) / 2));
	padding: 5rem 0;
}

.eyebrow,
.section-kicker,
.broadcast-time {
	margin: 0 0 0.65rem;
	color: var(--ow-yellow);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.hero-copy h1 {
	margin: 0;
	color: var(--ow-yellow);
	font-family: Impact, "Arial Black", sans-serif;
	font-size: clamp(3.4rem, 9vw, 8.5rem);
	font-weight: 900;
	letter-spacing: 0.015em;
	line-height: 0.87;
	text-transform: uppercase;
	text-shadow: 0.08em 0.08em 0 #000;
}

.tagline {
	margin: 1.25rem 0 0;
	font-size: clamp(1rem, 2vw, 1.35rem);
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero-intro {
	max-width: 660px;
	margin: 1.25rem 0 2rem;
	color: #dedbd2;
	font-size: clamp(1rem, 2vw, 1.2rem);
}

.button {
	display: inline-block;
	border: 2px solid var(--ow-yellow);
	padding: 0.75rem 1.15rem;
	color: var(--ow-yellow) !important;
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.button.primary,
.button:hover,
.button:focus-visible {
	background: var(--ow-yellow);
	color: #000 !important;
}

.oneway-intro {
	padding: 5rem 0 2.75rem;
}

.oneway-intro h2,
.section-heading h2,
.transmission-section h2 {
	margin: 0;
	color: var(--ow-white);
	font-family: Impact, "Arial Black", sans-serif;
	font-size: clamp(2.3rem, 6vw, 5.5rem);
	font-weight: 900;
	letter-spacing: 0.02em;
	line-height: 1;
	text-transform: uppercase;
}

.oneway-intro > p:last-child {
	max-width: 850px;
	margin: 1.5rem 0 0;
	color: var(--ow-gray);
	font-size: 1.08rem;
}

.artists-section {
	padding: 3rem 0 6rem;
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 2rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid var(--ow-line);
}

.section-heading > p {
	max-width: 390px;
	margin: 0;
	color: var(--ow-gray);
	text-align: right;
}

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

.artist-card {
	position: relative;
	margin: 0;
	background: var(--ow-panel);
	border: 1px solid rgba(255, 255, 255, 0.09);
	overflow: hidden;
}

.artist-card a,
.artist-card > div {
	display: block;
	position: relative;
	text-decoration: none;
}

.artist-card img {
	display: block;
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	filter: saturate(0.88) contrast(1.04);
	transition: transform 180ms ease, filter 180ms ease;
}

.artist-card span {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 2.25rem 0.8rem 0.75rem;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.96));
	color: var(--ow-white);
	font-weight: 900;
	letter-spacing: 0.055em;
	text-transform: uppercase;
}

.artist-card a:hover img,
.artist-card a:focus-visible img {
	transform: scale(1.035);
	filter: saturate(1) contrast(1.08);
}

.artist-card a:hover span,
.artist-card a:focus-visible span {
	color: var(--ow-yellow);
}

.artist-card.featured-card {
	border-color: var(--ow-yellow);
}

.archive-card::after {
	position: absolute;
	top: 0.7rem;
	right: 0.7rem;
	content: "ARCHIVE";
	padding: 0.18rem 0.4rem;
	background: rgba(0, 0, 0, 0.78);
	color: var(--ow-yellow);
	font-size: 0.62rem;
	font-weight: 900;
	letter-spacing: 0.1em;
}

.transmission-section {
	padding: 5rem 0;
	background: var(--ow-yellow);
	color: #050505;
}

.transmission-section h2,
.transmission-section h3,
.transmission-section p {
	color: #050505;
}

.transmission-section .section-kicker {
	color: #050505;
}

.transmission-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: clamp(2rem, 7vw, 6rem);
	align-items: center;
}

.transmission-grid > div:first-child > p:last-child {
	max-width: 660px;
	font-size: 1.05rem;
}

.broadcast-card {
	padding: 2rem;
	background: #050505;
	color: var(--ow-white);
	box-shadow: 0.8rem 0.8rem 0 rgba(0, 0, 0, 0.18);
}

.broadcast-card h3,
.broadcast-card p {
	color: var(--ow-white);
}

.broadcast-card h3 {
	margin: 0;
	font-size: 1.7rem;
	text-transform: uppercase;
}

.broadcast-card .button {
	margin-top: 0.5rem;
}

.oneway-footer {
	padding: 2.5rem 0;
	border-top: 1px solid var(--ow-line);
	background: #000;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.footer-grid strong {
	color: var(--ow-yellow);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.footer-grid p {
	margin: 0.35rem 0 0;
	color: var(--ow-gray);
}

@media screen and (max-width: 760px) {
	.site-bar,
	.section-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.site-bar nav {
		gap: 0.45rem 0.9rem;
	}

	.oneway-hero {
		min-height: 680px;
		background-position: 58% top;
	}

	.hero-shade {
		background: linear-gradient(0deg, #050505 0%, rgba(0, 0, 0, 0.76) 62%, rgba(0, 0, 0, 0.28) 100%);
	}

	.hero-copy {
		padding-bottom: 3rem;
	}

	.oneway-intro > p:last-child,
	.section-heading > p,
	.footer-grid p {
		color: var(--ow-white);
	}

	.section-heading > p {
		text-align: left;
	}

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

	.artist-card span {
		font-size: 0.78rem;
	}

	.transmission-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}
}

@media screen and (max-width: 390px) {
	.artist-grid {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.artist-card img {
		transition: none;
	}
}
