/**
 * The Wreck Light — front page layout (hero, section nav, sections, footer).
 */

/* -------------------------------------------------------------------------
   Design tokens (deep Atlantic dark mode)
   ------------------------------------------------------------------------- */
body.wrl-front-page {
	/* Override Yak font tokens so Industry cascades through all theme selectors. */
	--yak-primary-font: "industry-black", sans-serif;
	--yak-secondary-font: "industry-black", sans-serif;
	--yak-accent-font: "industry-black", sans-serif;

	--wrl-bg-abyss: #080e18;
	--wrl-bg-deep: #0c1a2e;
	--wrl-bg-surface: #132640;
	--wrl-bg-glass: rgba(12, 26, 46, 0.85);
	--wrl-accent: #5ba4c9;
	--wrl-accent-glow: rgba(91, 164, 201, 0.15);
	--wrl-text-heading: #dce8f1;
	--wrl-text-primary: #c9d6e4;
	--wrl-text-body: #b6c6d6;
	--wrl-text-secondary: #8fa3b6;
	--wrl-text-dim: #647892;
	--wrl-border: rgba(91, 164, 201, 0.12);
	--wrl-hero-media-bg: #0a1628;

	font-family: "industry-black", sans-serif;
	color: var(--wrl-text-body);
	background-color: var(--wrl-bg-abyss);
}

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.wrl-hero {
	position: relative;
	z-index: 1;
	/* Shorter than full viewport so portals / sections start a bit sooner. */
	min-height: calc(100vh - 8.5rem);
	max-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow-x: hidden;
	overflow-y: visible;
	color: var(--wrl-text-heading);
	text-align: center;
}

html.admin-bar .wrl-hero {
	min-height: calc(100vh - 32px - 8.5rem);
}

@media screen and (max-width: 782px) {
	html.admin-bar .wrl-hero {
		min-height: calc(100vh - 46px - 8.5rem);
	}
}

.wrl-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: var(--wrl-hero-media-bg);
	overflow: hidden;
}

.wrl-hero__video,
.wrl-hero__poster-fallback {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wrl-hero__scrim {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		to bottom,
		rgba(8, 14, 24, 0.2) 0%,
		rgba(6, 12, 22, 0.38) 38%,
		rgba(4, 10, 20, 0.68) 72%,
		rgba(3, 8, 16, 0.82) 100%
	);
	pointer-events: none;
}

.wrl-hero__inner {
	position: relative;
	z-index: 2;
	padding: max(env(safe-area-inset-top, 0px), 2rem) 1.5rem 4rem;
	max-width: 42rem;
	/* Pull title block up — less empty sky before the story starts. Cap so title never clips. */
	margin-top: clamp(-14rem, -22vh, -8rem);
}

.wrl-hero__inner:has(.wrl-hero__releases) {
	max-width: clamp(42rem, 90vw, 48rem);
}

.wrl-hero__stack {
	display: grid;
	width: max-content;
	max-width: 100%;
	margin-inline: auto;
	justify-items: stretch;
}

.wrl-hero__stack:has(.wrl-hero__releases) {
	width: 100%;
	--wrl-hero-card-gap: 0.75rem;
}

.wrl-hero__title {
	font-size: clamp(2.25rem, 7vw, 4.5rem);
	font-weight: 400;
	letter-spacing: 0.03em;
	line-height: 1.08;
	margin: 0 0 1rem;
	padding-top: 0.25rem;
	text-transform: none;
	color: var(--wrl-text-heading);
	text-align: center;
	text-shadow:
		0 0 48px rgba(91, 164, 201, 0.18),
		0 2px 24px rgba(0, 0, 0, 0.55);
}

.wrl-hero__tagline {
	margin: 0.35rem 0 0;
	font-size: clamp(1rem, 2.5vw, 1.35rem);
	font-weight: 300;
	letter-spacing: 0.04em;
	line-height: 1.35;
	color: var(--wrl-text-primary);
	opacity: 0.92;
	text-shadow: 0 1px 18px rgba(0, 0, 0, 0.45);
}

.wrl-hero__tagline--1 {
	text-align: center;
}

.wrl-hero__tagline--2 {
	opacity: 0.85;
	text-align: center;
}

.wrl-hero__releases {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: var(--wrl-hero-card-gap, 0.75rem);
	width: 100%;
	max-width: 30rem;
	margin-top: 1.15rem;
	margin-inline: auto;
}

.wrl-hero__tagline--1 + .wrl-hero__releases {
	margin-top: 1.5rem;
}

.wrl-hero__title + .wrl-hero__releases {
	margin-top: 1.65rem;
}

.wrl-hero__releases + .wrl-hero__social-wrap {
	margin-top: 1.15rem;
}

/* Compact featured release promo (album-ad style) */
.wrl-hero__release {
	display: flex;
	align-items: center;
	gap: var(--wrl-hero-card-gap, 0.75rem);
	width: 100%;
	margin-top: 0;
	padding: 0.75rem;
	text-align: left;
	color: inherit;
	background: rgba(12, 26, 46, 0.58);
	border: 1px solid rgba(91, 164, 201, 0.14);
	border-radius: 6px;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
	transition:
		background 0.2s ease,
		border-color 0.2s ease,
		transform 0.15s ease,
		box-shadow 0.2s ease;
}

.wrl-hero__release-main {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex: 1 1 auto;
	min-width: 0;
	text-decoration: none;
	color: inherit;
}

.wrl-hero__release-aside {
	flex-shrink: 0;
	align-self: center;
}

.wrl-hero__release:hover,
.wrl-hero__release:focus-within {
	background: rgba(19, 38, 64, 0.72);
	border-color: rgba(91, 164, 201, 0.3);
	transform: translateY(-2px);
	box-shadow:
		0 10px 32px rgba(0, 0, 0, 0.28),
		0 0 24px var(--wrl-accent-glow);
}

.wrl-hero__release-main:focus-visible {
	outline: 2px solid var(--wrl-accent);
	outline-offset: 3px;
	border-radius: 4px;
}

.wrl-hero__release-cover {
	display: block;
	width: 4.25rem;
	height: 4.25rem;
	border-radius: 4px;
	object-fit: cover;
	flex-shrink: 0;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.wrl-hero__release-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	flex: 0 1 auto;
}

.wrl-hero__release-kicker {
	margin: 0 0 0.12rem;
	font-size: 0.62rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wrl-text-secondary);
	line-height: 1.2;
}

.wrl-hero__release-title {
	margin: 0;
	font-size: clamp(0.92rem, 2.2vw, 1.05rem);
	font-weight: 700;
	line-height: 1.15;
	color: var(--wrl-text-heading);
	text-shadow: none;
	white-space: nowrap;
}

.wrl-hero__release-date {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 300;
	line-height: 1.2;
	color: var(--wrl-text-primary);
	opacity: 0.88;
	text-align: right;
	white-space: nowrap;
	text-shadow: none;
}

/* Primary featured release — larger, accented focal card */
.wrl-hero__release--feature {
	padding: 0.9rem 1rem;
	border-color: rgba(91, 164, 201, 0.28);
	box-shadow:
		0 10px 32px rgba(0, 0, 0, 0.28),
		0 0 28px var(--wrl-accent-glow);
}

.wrl-hero__release--feature .wrl-hero__release-cover {
	width: 5.25rem;
	height: 5.25rem;
}

.wrl-hero__release--feature .wrl-hero__release-title {
	font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.wrl-hero__release--feature:hover,
.wrl-hero__release--feature:focus-within {
	border-color: rgba(91, 164, 201, 0.42);
	box-shadow:
		0 12px 36px rgba(0, 0, 0, 0.32),
		0 0 36px rgba(91, 164, 201, 0.22);
}

/* Subordinate upcoming-release teaser strip */
.wrl-hero__upnext {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	width: 100%;
	padding: 0.55rem 0.75rem;
	text-align: left;
	text-decoration: none;
	color: inherit;
	background: rgba(12, 26, 46, 0.42);
	border: 1px solid rgba(91, 164, 201, 0.1);
	border-radius: 6px;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	opacity: 1;
	transition:
		background 0.2s ease,
		border-color 0.2s ease,
		opacity 0.2s ease;
}

.wrl-hero__upnext:hover,
.wrl-hero__upnext:focus-visible {
	background: rgba(12, 26, 46, 0.54);
	border-color: rgba(91, 164, 201, 0.2);
	opacity: 1;
}

.wrl-hero__upnext:focus-visible {
	outline: 2px solid var(--wrl-accent);
	outline-offset: 3px;
}

.wrl-hero__upnext-cover {
	display: block;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 3px;
	object-fit: cover;
	flex-shrink: 0;
	opacity: 0.9;
}

.wrl-hero__upnext-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	flex: 1 1 auto;
	min-width: 0;
}

.wrl-hero__upnext-kicker {
	margin: 0 0 0.08rem;
	font-size: 0.58rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wrl-text-dim);
	line-height: 1.2;
}

.wrl-hero__upnext-title {
	margin: 0;
	font-size: 0.82rem;
	font-weight: 600;
	line-height: 1.2;
	color: var(--wrl-text-primary);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.wrl-hero__upnext-date {
	flex-shrink: 0;
	font-size: 0.68rem;
	font-weight: 300;
	line-height: 1.2;
	color: var(--wrl-text-secondary);
	white-space: nowrap;
	text-align: right;
}

@media (max-width: 640px) {
	.wrl-hero__inner {
		margin-top: clamp(-3rem, -5vh, -1.5rem);
		padding-top: max(env(safe-area-inset-top, 0px), clamp(4rem, 14vh, 6.5rem));
		padding-bottom: 3.25rem;
	}

	.wrl-hero__inner:has(.wrl-hero__releases) {
		margin-top: clamp(-2rem, -3vh, -0.75rem);
		padding-top: max(env(safe-area-inset-top, 0px), clamp(4.25rem, 15vh, 7rem));
	}

	.wrl-hero__title {
		margin-bottom: 1.15rem;
	}

	.wrl-hero__releases {
		margin-top: 1.15rem;
		max-width: none;
	}

	.wrl-hero__release {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 0.75rem;
	}

	.wrl-hero__release-cover {
		width: 4.75rem;
		height: 4.75rem;
	}

	.wrl-hero__release-title {
		white-space: normal;
		font-size: 1.05rem;
	}

	.wrl-hero__release-aside {
		width: 100%;
		margin-top: var(--wrl-hero-card-gap, 0.75rem);
		padding-top: var(--wrl-hero-card-gap, 0.75rem);
		border-top: 1px solid rgba(91, 164, 201, 0.14);
		align-self: stretch;
	}

	.wrl-hero__release-listen {
		justify-content: flex-start;
		gap: 0.6rem;
	}

	.wrl-hero__release-date {
		text-align: left;
		white-space: normal;
		font-size: 0.78rem;
	}

	.wrl-hero__release--feature .wrl-hero__release-cover {
		width: 4.75rem;
		height: 4.75rem;
	}

	.wrl-hero__upnext {
		flex-wrap: wrap;
		row-gap: 0.35rem;
	}

	.wrl-hero__upnext-date {
		width: 100%;
		padding-left: calc(2.5rem + 0.65rem);
		text-align: left;
		white-space: normal;
	}
}

@media (max-width: 380px) {
	.wrl-hero__release-listen-icons {
		gap: 0.45rem;
	}

	.wrl-hero__release-listen-link {
		width: 2.45rem;
		height: 2.45rem;
	}
}

.wrl-hero__release-listen {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	gap: 0.55rem;
}

.wrl-hero__release-listen-label {
	flex-shrink: 0;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--wrl-text-secondary);
	line-height: 1.2;
}

.wrl-hero__release-listen-icons {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.5rem;
}

.wrl-hero__release-listen-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.65rem;
	height: 2.65rem;
	border-radius: 999px;
	border: 1px solid rgba(91, 164, 201, 0.18);
	background: rgba(8, 16, 30, 0.45);
	color: var(--wrl-text-heading);
	text-decoration: none;
	transition:
		background 0.2s ease,
		border-color 0.2s ease,
		transform 0.15s ease,
		box-shadow 0.2s ease;
}

.wrl-hero__release-listen-link i {
	font-size: 1.15rem;
	line-height: 1;
}

.wrl-hero__release-listen-link:hover,
.wrl-hero__release-listen-link:focus-visible {
	transform: translateY(-1px);
	border-color: var(--wrl-stream-accent, var(--wrl-accent));
	box-shadow: 0 0 16px color-mix(in srgb, var(--wrl-stream-accent, var(--wrl-accent)) 35%, transparent);
}

.wrl-hero__release-listen-link:focus-visible {
	outline: 2px solid var(--wrl-accent);
	outline-offset: 2px;
}

.wrl-hero__release-listen-link--spotify { --wrl-stream-accent: #1db954; }
.wrl-hero__release-listen-link--apple_music { --wrl-stream-accent: #fa586a; }
.wrl-hero__release-listen-link--youtube { --wrl-stream-accent: #ff0033; }
.wrl-hero__release-listen-link--amazon_music { --wrl-stream-accent: #25d1da; }
.wrl-hero__release-listen-link--bandcamp { --wrl-stream-accent: #1da0c3; }
.wrl-hero__release-listen-link--soundcloud { --wrl-stream-accent: #ff5500; }
.wrl-hero__release-listen-link--tidal { --wrl-stream-accent: #ffffff; }
.wrl-hero__release-listen-link--deezer { --wrl-stream-accent: #a238ff; }
.wrl-hero__release-listen-link--pandora { --wrl-stream-accent: #3668ff; }
.wrl-hero__release-listen-link--other { --wrl-stream-accent: var(--wrl-accent); }

.wrl-hero__release-aside .wrl-release-streaming-icons {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.45rem;
}

.wrl-hero__release-aside .wrl-release-streaming-icons__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	border: 1px solid rgba(91, 164, 201, 0.18);
	background: rgba(8, 16, 30, 0.45);
	color: var(--wrl-text-heading);
	text-decoration: none;
	transition:
		background 0.2s ease,
		border-color 0.2s ease,
		transform 0.15s ease,
		box-shadow 0.2s ease;
}

.wrl-hero__release-aside .wrl-release-streaming-icons__link i {
	font-size: 0.95rem;
	line-height: 1;
}

.wrl-hero__release-aside .wrl-release-streaming-icons__link:hover,
.wrl-hero__release-aside .wrl-release-streaming-icons__link:focus-visible {
	transform: translateY(-1px);
	border-color: var(--wrl-stream-accent, var(--wrl-accent));
	box-shadow: 0 0 16px color-mix(in srgb, var(--wrl-stream-accent, var(--wrl-accent)) 35%, transparent);
}

.wrl-hero__release-aside .wrl-release-streaming-icons__link:focus-visible {
	outline: 2px solid var(--wrl-accent);
	outline-offset: 2px;
}

.wrl-hero__release-aside .wrl-release-streaming-icons__link--spotify { --wrl-stream-accent: #1db954; }
.wrl-hero__release-aside .wrl-release-streaming-icons__link--apple_music { --wrl-stream-accent: #fa586a; }
.wrl-hero__release-aside .wrl-release-streaming-icons__link--youtube { --wrl-stream-accent: #ff0033; }
.wrl-hero__release-aside .wrl-release-streaming-icons__link--amazon_music { --wrl-stream-accent: #25d1da; }
.wrl-hero__release-aside .wrl-release-streaming-icons__link--bandcamp { --wrl-stream-accent: #1da0c3; }
.wrl-hero__release-aside .wrl-release-streaming-icons__link--soundcloud { --wrl-stream-accent: #ff5500; }
.wrl-hero__release-aside .wrl-release-streaming-icons__link--tidal { --wrl-stream-accent: #ffffff; }
.wrl-hero__release-aside .wrl-release-streaming-icons__link--deezer { --wrl-stream-accent: #a238ff; }
.wrl-hero__release-aside .wrl-release-streaming-icons__link--pandora { --wrl-stream-accent: #3668ff; }
.wrl-hero__release-aside .wrl-release-streaming-icons__link--other { --wrl-stream-accent: var(--wrl-accent); }

.wrl-hero__release-streaming {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.45rem;
}

.wrl-hero__release-stream {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	border: 1px solid rgba(91, 164, 201, 0.18);
	background: rgba(8, 16, 30, 0.45);
	color: var(--wrl-text-heading);
	text-decoration: none;
	transition:
		background 0.2s ease,
		border-color 0.2s ease,
		transform 0.15s ease,
		box-shadow 0.2s ease;
}

.wrl-hero__release-stream i {
	font-size: 0.95rem;
	line-height: 1;
}

.wrl-hero__release-stream:hover,
.wrl-hero__release-stream:focus-visible {
	transform: translateY(-1px);
	border-color: var(--wrl-stream-accent, var(--wrl-accent));
	box-shadow: 0 0 16px color-mix(in srgb, var(--wrl-stream-accent, var(--wrl-accent)) 35%, transparent);
}

.wrl-hero__release-stream:focus-visible {
	outline: 2px solid var(--wrl-accent);
	outline-offset: 2px;
}

.wrl-hero__release-stream--spotify { --wrl-stream-accent: #1db954; }
.wrl-hero__release-stream--apple_music { --wrl-stream-accent: #fa586a; }
.wrl-hero__release-stream--youtube { --wrl-stream-accent: #ff0033; }
.wrl-hero__release-stream--amazon_music { --wrl-stream-accent: #25d1da; }
.wrl-hero__release-stream--bandcamp { --wrl-stream-accent: #1da0c3; }
.wrl-hero__release-stream--soundcloud { --wrl-stream-accent: #ff5500; }
.wrl-hero__release-stream--tidal { --wrl-stream-accent: #ffffff; }
.wrl-hero__release-stream--deezer { --wrl-stream-accent: #a238ff; }
.wrl-hero__release-stream--pandora { --wrl-stream-accent: #3668ff; }
.wrl-hero__release-stream--other { --wrl-stream-accent: var(--wrl-accent); }

/* Social row (hero) */
.wrl-social {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
	justify-content: center;
	margin: 2rem 0 0;
	padding: 0;
}

.wrl-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 999px;
	background: rgba(232, 237, 242, 0.08);
	color: var(--wrl-text-heading);
	text-decoration: none;
	border: 1px solid var(--wrl-border);
	transition:
		background 0.2s ease,
		transform 0.15s ease,
		box-shadow 0.2s ease;
}

.wrl-social__link:hover,
.wrl-social__link:focus-visible {
	background: rgba(91, 164, 201, 0.18);
	box-shadow: 0 0 20px var(--wrl-accent-glow);
	transform: translateY(-2px);
}

.wrl-social__link i {
	font-size: 1.35rem;
	line-height: 1;
}

/* Hero social — slim follow row below release promos */
.wrl-hero__social-wrap {
	width: 100%;
	max-width: 30rem;
	margin: 1.35rem auto 0;
	padding: 0.75rem;
	text-align: center;
	background: rgba(12, 26, 46, 0.38);
	border: 1px solid rgba(91, 164, 201, 0.14);
	border-radius: 6px;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.wrl-hero__social-wrap--slim {
	margin-top: 1rem;
	padding: 0.5rem 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	box-shadow: none;
}

.wrl-hero__releases + .wrl-hero__social-wrap--slim {
	margin-top: 1rem;
}

.wrl-hero__social-kicker {
	margin: 0 0 var(--wrl-hero-card-gap, 0.75rem);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--wrl-text-secondary);
}

.wrl-hero__social-wrap .wrl-social {
	margin: 0;
	gap: var(--wrl-hero-card-gap, 0.75rem);
}

.wrl-hero__social--labeled .wrl-social__item {
	flex: 1 1 0;
	min-width: 0;
	max-width: 11rem;
}

.wrl-hero__social--labeled .wrl-social__link {
	width: 100%;
	min-height: 2.85rem;
	padding: 0.55rem 1rem;
	gap: 0.5rem;
	border-radius: 999px;
	background: rgba(8, 16, 30, 0.55);
	border-color: rgba(91, 164, 201, 0.2);
	justify-content: center;
	white-space: nowrap;
}

.wrl-hero__social .wrl-social__link {
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.wrl-hero__social--labeled .wrl-social__link:hover,
.wrl-hero__social--labeled .wrl-social__link:focus-visible {
	background: rgba(19, 38, 64, 0.72);
	border-color: rgba(91, 164, 201, 0.38);
}

.wrl-hero__social--labeled .wrl-social__label {
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	color: var(--wrl-text-heading);
	line-height: 1.2;
}

.wrl-hero__social--labeled .wrl-social__link i {
	font-size: 1.2rem;
}

/* Slim follow row — compact horizontal icon pills */
.wrl-hero__social--slim {
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.wrl-hero__social--slim .wrl-social__item {
	flex: 0 1 auto;
	min-width: 0;
	max-width: none;
}

.wrl-hero__social--slim .wrl-social__link {
	width: auto;
	min-height: 2.35rem;
	padding: 0.4rem 0.85rem;
	gap: 0.4rem;
}

.wrl-hero__social--slim .wrl-social__label {
	font-size: 0.75rem;
	font-weight: 600;
}

.wrl-hero__social--slim .wrl-social__link i {
	font-size: 1.05rem;
}

.wrl-hero__social-wrap--slim .wrl-hero__social-kicker {
	margin-bottom: 0.55rem;
}

@media (max-width: 640px) {
	.wrl-hero__social-wrap {
		margin-top: 1.15rem;
		margin-bottom: 0.25rem;
		padding: 0;
		max-width: none;
		background: transparent;
		border: 0;
		box-shadow: none;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.wrl-hero__releases + .wrl-hero__social-wrap--slim {
		margin-top: 1rem;
	}

	.wrl-hero__social-wrap--slim .wrl-hero__social-kicker {
		display: block;
		margin-bottom: 0.5rem;
	}

	.wrl-hero__social-wrap .wrl-hero__social--slim {
		flex-direction: row;
		align-items: center;
		justify-content: center;
		flex-wrap: wrap;
		gap: 0.5rem;
	}

	.wrl-hero__social--slim .wrl-social__item {
		flex: 0 1 auto;
		width: auto;
	}

	.wrl-hero__social--slim .wrl-social__link {
		width: auto;
		min-height: 2.5rem;
		padding: 0.45rem 0.9rem;
		justify-content: center;
	}
}

/* Scroll cue */
.wrl-hero__scroll {
	position: absolute;
	bottom: 2rem;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	margin: 0;
	padding: 0.5rem 1rem;
	border: none;
	background: transparent;
	color: var(--wrl-text-primary);
	cursor: pointer;
	line-height: 1;
	opacity: 0.65;
	animation: wrl-hero-bob 3.2s ease-in-out infinite;
	z-index: 3;
}

.wrl-hero__scroll-icon {
	display: inline-block;
	font-size: 1.75rem;
	line-height: 1;
}

.wrl-hero__scroll-icon i {
	display: block;
	line-height: 1;
}

.wrl-hero__scroll:focus-visible {
	outline: 2px solid var(--wrl-accent);
	outline-offset: 4px;
}

@keyframes wrl-hero-bob {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(6px);
	}
}

/* -------------------------------------------------------------------------
   Main / full-width strip
   ------------------------------------------------------------------------- */
body.wrl-front-page .site-inner {
	max-width: none;
	width: 100%;
	padding: 0;
}

body.wrl-front-page .content-sidebar-wrap,
body.wrl-front-page .content {
	max-width: none;
	width: 100%;
}

body.wrl-front-page .entry {
	padding: 0;
}

.wrl-admin-hint {
	margin: 0;
	padding: 1.5rem;
	background: rgba(91, 164, 201, 0.1);
	border-left: 4px solid var(--wrl-accent);
	color: var(--wrl-text-body);
	font-size: 0.95rem;
}

.wrl-main {
	position: relative;
	z-index: 1;
	outline: none;
}

/* Strip Yak layout padding so sections go full-width on front page. */
body.wrl-front-page .content-sidebar-wrap {
	padding-inline: 0;
	max-width: none;
}

/* -------------------------------------------------------------------------
   Ocean scene (fixed layers, only when body lacks .wrl-ocean-off)
   ------------------------------------------------------------------------- */
.wrl-ocean {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.wrl-ocean-base {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(
		180deg,
		#0e2240 0%,
		#091828 55%,
		#040810 100%
	);
	pointer-events: none;
}

.wrl-ocean-caustic {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
	pointer-events: none;
	mask-image: linear-gradient(
		180deg,
		rgb(0 0 0 / 0.95) 0%,
		rgb(0 0 0 / 0.65) 50%,
		rgb(0 0 0 / 0.85) 100%
	);
	-webkit-mask-image: linear-gradient(
		180deg,
		rgb(0 0 0 / 0.95) 0%,
		rgb(0 0 0 / 0.65) 50%,
		rgb(0 0 0 / 0.85) 100%
	);
}

.wrl-ocean-caustic__layer {
	position: absolute;
	top: 0;
	width: 160%;
	height: 100%;
	left: -30%;
	will-change: transform;
}

.wrl-ocean-caustic__a {
	opacity: var(--wrl-caustic-a-opacity, 0.03);
	animation: wrl-caustic-drift-a var(--wrl-caustic-a-dur, 45s) cubic-bezier(0.37, 0, 0.63, 1) infinite;
}

.wrl-ocean-caustic__b {
	opacity: var(--wrl-caustic-b-opacity, 0.02);
	animation: wrl-caustic-drift-b var(--wrl-caustic-b-dur, 60s) cubic-bezier(0.37, 0, 0.63, 1) infinite;
}

.wrl-ocean-caustic__c {
	opacity: var(--wrl-caustic-c-opacity, 0);
	animation: wrl-caustic-drift-c var(--wrl-caustic-c-dur, 84s) cubic-bezier(0.45, 0, 0.55, 1) infinite;
	mix-blend-mode: soft-light;
}

.wrl-ocean-caustic-svg {
	display: block;
	width: 100%;
	height: 100%;
}

@keyframes wrl-caustic-drift-a {
	0% {
		transform: scale(1.5) translate(0, 0);
	}
	50% {
		transform: scale(1.5) translate(-8%, 2%);
	}
	100% {
		transform: scale(1.5) translate(0, 0);
	}
}

@keyframes wrl-caustic-drift-b {
	0% {
		transform: scale(2) translate(3%, 0);
	}
	50% {
		transform: scale(2) translate(-5%, -1.5%);
	}
	100% {
		transform: scale(2) translate(3%, 0);
	}
}

@keyframes wrl-caustic-drift-c {
	0% {
		transform: scale(2.15) translate(-4%, 1%);
	}
	50% {
		transform: scale(2.15) translate(5%, -2.5%);
	}
	100% {
		transform: scale(2.15) translate(-4%, 1%);
	}
}

.wrl-ocean-particles {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	/* Fade out in the lower viewport so specks don’t brighten the inky abyss. */
	mask-image: linear-gradient(
		to bottom,
		#000 0%,
		#000 58%,
		rgb(0 0 0 / 0.55) 72%,
		rgb(0 0 0 / 0.12) 85%,
		transparent 93%
	);
	-webkit-mask-image: linear-gradient(
		to bottom,
		#000 0%,
		#000 58%,
		rgb(0 0 0 / 0.55) 72%,
		rgb(0 0 0 / 0.12) 85%,
		transparent 93%
	);
	mask-size: 100% 100%;
	-webkit-mask-size: 100% 100%;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
}

.wrl-ocean-particle {
	position: absolute;
	border-radius: 50%;
	--wrl-p-soft: 1;
	--wrl-p-spread: 74%;
	--wrl-p-glow: 1;
	background: radial-gradient(
		circle closest-side,
		rgba(160, 210, 242, calc(0.62 * var(--wrl-p-soft))) 0%,
		rgba(160, 210, 242, calc(0.24 * var(--wrl-p-soft))) 42%,
		rgba(160, 210, 242, 0) var(--wrl-p-spread)
	);
	box-shadow: 0 0 calc(16px * var(--wrl-p-glow)) calc(8px * var(--wrl-p-glow)) rgba(100, 180, 220, calc(0.14 * var(--wrl-p-soft)));
	transform: translate(-50%, -50%);
	--wrl-p-drift-x: 3vw;
	--wrl-p-drift-y: 40vh;
	--wrl-p-sway-x: 1.5vw;
	--wrl-p-mid-y: 20vh;
	animation-name: wrl-particle-drift;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	will-change: transform, opacity;
}

.wrl-ocean-particle--teal {
	background: radial-gradient(
		circle closest-side,
		rgba(120, 205, 195, calc(0.5 * var(--wrl-p-soft))) 0%,
		rgba(120, 205, 195, calc(0.18 * var(--wrl-p-soft))) 42%,
		rgba(120, 205, 195, 0) var(--wrl-p-spread)
	);
	box-shadow: 0 0 calc(14px * var(--wrl-p-glow)) calc(7px * var(--wrl-p-glow)) rgba(80, 190, 175, calc(0.12 * var(--wrl-p-soft)));
}

.wrl-ocean-particle--suspend {
	animation-name: wrl-particle-suspend;
	will-change: auto;
}

@keyframes wrl-particle-drift {
	0% {
		transform: translate(-50%, -50%) translate(0, 0);
		opacity: 1;
	}
	50% {
		transform: translate(-50%, -50%) translate(var(--wrl-p-sway-x), var(--wrl-p-mid-y));
		opacity: 0.7;
	}
	78% {
		opacity: 0.06;
	}
	100% {
		transform: translate(-50%, -50%) translate(var(--wrl-p-drift-x), var(--wrl-p-drift-y));
		opacity: 0;
	}
}

@keyframes wrl-particle-suspend {
	0%,
	100% {
		transform: translate(-50%, -50%) translate(0, 0);
		opacity: 0.82;
	}
	25% {
		transform: translate(-50%, -50%) translate(var(--wrl-p-sway-x), var(--wrl-p-mid-y));
		opacity: 0.68;
	}
	50% {
		transform: translate(-50%, -50%) translate(var(--wrl-p-drift-x), calc(var(--wrl-p-drift-y) * 0.55));
		opacity: 0.74;
	}
	75% {
		transform: translate(-50%, -50%) translate(calc(var(--wrl-p-sway-x) * -0.72), calc(var(--wrl-p-mid-y) * -0.85));
		opacity: 0.7;
	}
}

.wrl-ocean-vignette {
	position: absolute;
	inset: 0;
	z-index: 3;
	pointer-events: none;
	background:
		linear-gradient(
			to bottom,
			rgba(91, 164, 201, var(--wrl-surface-glow-opacity, 0.03)) 0%,
			transparent 15%
		),
		radial-gradient(
			ellipse 88% 72% at 50% 34%,
			transparent 44%,
			rgba(4, 8, 16, calc(var(--wrl-vignette-edge-alpha, 0.55) * 0.58)) 100%
		);
}

/* Deep water: one blurred gradient pass (cheaper than SVG feGaussianBlur). */
.wrl-ocean-ink {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: min(88vh, 52rem);
	z-index: 4;
	pointer-events: none;
	overflow: hidden;
	opacity: 0.92;
}

.wrl-ocean-ink::before {
	content: "";
	position: absolute;
	left: -10%;
	right: -10%;
	bottom: -8%;
	height: 112%;
	transform: scale(1.04);
	transform-origin: 50% 100%;
	background: linear-gradient(
		180deg,
		rgba(12, 20, 34, 0) 0%,
		rgba(8, 14, 24, 0.08) 22%,
		rgba(3, 6, 14, 0.38) 48%,
		rgba(1, 2, 6, 0.72) 74%,
		rgba(0, 0, 0, 0.97) 100%
	);
	filter: blur(16px);
}

body.wrl-ocean-off .wrl-ocean,
body.wrl-ocean-off .wrl-ocean-base,
body.wrl-ocean-off .wrl-ocean-caustic,
body.wrl-ocean-off .wrl-ocean-particles,
body.wrl-ocean-off .wrl-ocean-vignette,
body.wrl-ocean-off .wrl-ocean-ink {
	display: none;
}

@media (prefers-reduced-motion: reduce) {
	.wrl-ocean-caustic__a,
	.wrl-ocean-caustic__b {
		animation: none !important;
		opacity: 0.025 !important;
	}

	.wrl-ocean-caustic__c {
		opacity: 0 !important;
		animation: none !important;
	}

	.wrl-ocean-particle {
		animation: none !important;
	}

	.wrl-ocean-particle--suspend {
		animation: none !important;
	}
}

@media (max-width: 768px) {
	.wrl-ocean-caustic__b,
	.wrl-ocean-caustic__c {
		display: none;
	}

	.wrl-ocean-caustic__a {
		animation-duration: 60s !important;
	}

	.wrl-ocean-particles .wrl-ocean-particle:nth-child(n + 6) {
		display: none;
	}

	body.wrl-ocean-electric .wrl-ocean-caustic__b,
	body.wrl-ocean-electric .wrl-ocean-caustic__c {
		display: block;
	}

	body.wrl-ocean-electric .wrl-ocean-caustic__a {
		animation-duration: var(--wrl-caustic-a-dur, 45s) !important;
	}

	body.wrl-ocean-electric .wrl-ocean-particles .wrl-ocean-particle:nth-child(n + 6) {
		display: block;
	}

	body.wrl-ocean-electric .wrl-ocean-particles .wrl-ocean-particle:nth-child(n + 13) {
		display: none;
	}
}

@media (max-width: 480px) {
	.wrl-ocean-caustic__a {
		opacity: 0.02 !important;
	}

	.wrl-ocean-particle {
		opacity: 0.03 !important;
	}

	body.wrl-ocean-electric .wrl-ocean-caustic__a {
		opacity: 0.14 !important;
	}

	body.wrl-ocean-electric .wrl-ocean-particle {
		opacity: 1 !important;
	}
}

@media print {
	.wrl-ocean,
	.wrl-ocean-base,
	.wrl-ocean-caustic,
	.wrl-ocean-particles,
	.wrl-ocean-vignette,
	.wrl-ocean-ink {
		display: none !important;
	}

	body.wrl-front-page .wrl-section {
		background: var(--wrl-bg-deep) !important;
	}
}

/* -------------------------------------------------------------------------
   Section nav — clean icon bar + compact sticky duplicate
   ------------------------------------------------------------------------- */
.wrl-nav-shell {
	position: relative;
	z-index: 1;
}

.wrl-portals {
	position: relative;
	z-index: 2;
	padding: 2rem 1.5rem;
	background: var(--wrl-bg-abyss);
}

.wrl-portals__inner {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 3rem;
	max-width: 720px;
	margin: 0 auto;
}

.wrl-portal {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 1.25rem;
	text-align: center;
	text-decoration: none;
	color: var(--wrl-text-secondary);
	background: transparent;
	border: none;
	border-bottom: 2px solid transparent;
	transition:
		color 0.2s ease,
		border-color 0.3s ease;
}

.wrl-portal:hover,
.wrl-portal:focus-visible {
	color: var(--wrl-text-heading);
	border-bottom-color: var(--wrl-accent);
}

.wrl-portal:focus-visible {
	outline: 2px solid var(--wrl-accent);
	outline-offset: 4px;
}

.wrl-portal.is-active {
	color: var(--wrl-text-heading);
	border-bottom-color: var(--wrl-accent);
}

.wrl-portal.is-active .wrl-portal__icon {
	color: var(--wrl-accent);
}

.wrl-portal__icon {
	font-size: 1.5rem;
	line-height: 1;
	transition: color 0.2s ease;
}

.wrl-portal__label {
	display: block;
	font-size: 0.75rem;
	font-weight: 400;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.wrl-portals-sentinel {
	height: 0;
	overflow: hidden;
	pointer-events: none;
	visibility: hidden;
}

/* Compact sticky nav (text-only, glass) */
.wrl-nav-compact {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 1000;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	padding: 0.55rem 1.25rem;
	background: rgba(12, 26, 46, 0.94);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--wrl-border);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
	transform: translateY(-110%);
	opacity: 0;
	pointer-events: none;
	transition:
		transform 0.35s ease,
		opacity 0.25s ease;
}

.wrl-nav-compact.is-visible {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}

/* Release singles: always show the same compact nav as the homepage. */
body.wrl-release-single .wrl-nav-compact--persistent {
	position: fixed;
}

body.wrl-release-single .wrl-release {
	padding-top: 5.75rem;
}

.admin-bar .wrl-nav-compact {
	top: 32px;
}

@media screen and (max-width: 782px) {
	.admin-bar .wrl-nav-compact {
		top: 46px;
	}
}

.wrl-nav-compact__title {
	font-family: "industry-black", sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-decoration: none;
	color: var(--wrl-text-heading);
	white-space: nowrap;
}

.wrl-nav-compact__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	margin: 0;
	padding: 0;
	border: 1px solid var(--wrl-border);
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.04);
	color: var(--wrl-text-heading);
	cursor: pointer;
	transition:
		background 0.2s ease,
		border-color 0.2s ease;
}

.wrl-nav-compact__toggle:hover,
.wrl-nav-compact__toggle:focus-visible {
	background: rgba(91, 164, 201, 0.12);
	border-color: rgba(91, 164, 201, 0.35);
}

.wrl-nav-compact__toggle:focus-visible {
	outline: 2px solid var(--wrl-accent);
	outline-offset: 2px;
}

.wrl-nav-compact__toggle-icon {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	width: 1.1rem;
}

.wrl-nav-compact__toggle-bar {
	display: block;
	height: 2px;
	width: 100%;
	background: currentColor;
	border-radius: 1px;
	transition:
		transform 0.25s ease,
		opacity 0.2s ease;
}

.wrl-nav-compact.is-menu-open .wrl-nav-compact__toggle-bar:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.wrl-nav-compact.is-menu-open .wrl-nav-compact__toggle-bar:nth-child(2) {
	opacity: 0;
}

.wrl-nav-compact.is-menu-open .wrl-nav-compact__toggle-bar:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.wrl-nav-compact__panel {
	grid-column: 1 / -1;
}

.wrl-nav-compact__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.35rem 3rem;
	max-width: 100%;
}

.wrl-nav-compact__link {
	font-size: 0.72rem;
	font-weight: 400;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--wrl-text-secondary);
	padding: 0.25rem 0;
	border-bottom: 2px solid transparent;
	transition:
		color 0.2s ease,
		border-color 0.2s ease;
}

.wrl-nav-compact__link:hover,
.wrl-nav-compact__link:focus-visible {
	color: var(--wrl-text-heading);
}

.wrl-nav-compact__link.is-active {
	color: var(--wrl-accent);
	border-bottom-color: var(--wrl-accent);
}

.wrl-nav-compact__link:focus-visible {
	outline: 2px solid var(--wrl-accent);
	outline-offset: 4px;
}

@media screen and (max-width: 959px) {
	.wrl-nav-compact {
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		padding-inline: 1rem;
	}

	.wrl-nav-compact__title {
		min-width: 0;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.wrl-nav-compact__toggle {
		display: inline-flex;
		flex-shrink: 0;
	}

	.wrl-nav-compact__panel {
		display: none;
		position: fixed;
		left: 0;
		right: 0;
		top: var(--wrl-nav-compact-height, 3.25rem);
		z-index: 999;
		max-height: calc(100vh - var(--wrl-nav-compact-height, 3.25rem));
		overflow-y: auto;
		padding: 0.75rem 1rem 1.25rem;
		background: rgba(8, 14, 24, 0.98);
		border-bottom: 1px solid var(--wrl-border);
		box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
	}

	.admin-bar .wrl-nav-compact__panel {
		top: calc(var(--wrl-nav-compact-height, 3.25rem) + 46px);
		max-height: calc(100vh - var(--wrl-nav-compact-height, 3.25rem) - 46px);
	}

	@media screen and (min-width: 783px) {
		.admin-bar .wrl-nav-compact__panel {
			top: calc(var(--wrl-nav-compact-height, 3.25rem) + 32px);
			max-height: calc(100vh - var(--wrl-nav-compact-height, 3.25rem) - 32px);
		}
	}

	.wrl-nav-compact.is-menu-open .wrl-nav-compact__panel {
		display: block;
	}

	.wrl-nav-compact__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.wrl-nav-compact__link {
		display: block;
		padding: 0.85rem 0.5rem;
		font-size: 0.82rem;
		border-bottom: 1px solid rgba(91, 164, 201, 0.1);
	}

	.wrl-nav-compact__link.is-active {
		border-bottom-color: rgba(91, 164, 201, 0.1);
		border-left: 3px solid var(--wrl-accent);
		padding-left: calc(0.5rem - 3px);
	}
}

@media screen and (min-width: 960px) {
	.wrl-nav-compact__toggle {
		display: none;
	}

	.wrl-nav-compact__panel {
		display: contents;
	}

	.wrl-nav-compact__inner {
		grid-column: 2;
		justify-content: center;
	}
}

/* -------------------------------------------------------------------------
   Sections + reading measure
   ------------------------------------------------------------------------- */
.wrl-section {
	position: relative;
	z-index: 1;
	scroll-margin-top: 5rem;
	min-height: 10vh;
	background: rgba(12, 26, 46, var(--wrl-section-bg-alpha, 0.92));
	padding: 3rem 0;
}

body.wrl-ocean-off .wrl-section {
	background: var(--wrl-bg-deep);
}

/* Last section + footer: one continuous fade into the abyss (no “slab” or ruler line). */
body.wrl-front-page:not(.wrl-ocean-off) #wrl-main > .wrl-section:last-of-type {
	background: linear-gradient(
		180deg,
		rgba(12, 26, 46, var(--wrl-section-bg-alpha, 0.92)) 0%,
		rgba(12, 26, 46, calc(var(--wrl-section-bg-alpha, 0.92) * 0.72)) 28%,
		rgba(8, 16, 30, calc(var(--wrl-section-bg-alpha, 0.92) * 0.4)) 50%,
		rgba(4, 10, 20, 0.12) 72%,
		rgba(2, 6, 14, 0.04) 88%,
		rgba(2, 6, 14, 0) 100%
	);
	padding-bottom: 8.25rem;
}

.wrl-section::after {
	display: none;
}

.wrl-section .entry-content {
	position: relative;
	z-index: 1;
	max-width: none;
	font-size: var(--yak-font-md, 1.0625rem);
	line-height: var(--yak-lh-md, 1.65);
	font-weight: 400;
	color: var(--wrl-text-body);
}

.wrl-section .entry-content > *:not(.alignfull):not(.alignwide):not(.wp-block-cover):not(.wp-block-wreck-light-gallery-wall) {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

/* Full-width masonry: excluded from reading measure above; keep horizontal padding */
.wrl-section .entry-content > .wp-block-wreck-light-gallery-wall {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	box-sizing: border-box;
}

.wrl-section .entry-content :is(h1, h2, h3, h4, h5, h6) {
	color: var(--wrl-text-heading);
	font-family: "industry-black", sans-serif;
}

.wrl-section .entry-content :is(h1, h2, h3):not(.wrl-release__title) {
	font-weight: 300;
	font-size: clamp(2rem, 5vw, 3.5rem);
	line-height: 1.15;
}

.wrl-section .entry-content :is(h2, h3):not(.wrl-release__title) {
	font-size: clamp(1.5rem, 4vw, 2.25rem);
}

/* Music section featured release card — override section + theme heading rules */
body.wrl-front-page .wrl-section .entry-content .wrl-release__header--teaser .wrl-release__header-text {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	row-gap: 0.5rem;
}

body.wrl-front-page .wrl-section .entry-content .wrl-release__header--teaser .wrl-release__header-text > * {
	margin-block: 0;
}

body.wrl-front-page .wrl-section .entry-content .wrl-release__header--teaser h3.wrl-release__title {
	margin-block: 0;
	font-size: var(--wrl-release-title-size);
	font-weight: 300;
	line-height: 1.1;
}

.wrl-section .entry-content :is(h4, h5, h6) {
	font-weight: 400;
	font-size: clamp(1.05rem, 2.5vw, 1.25rem);
	line-height: 1.3;
	margin-top: 1.75rem;
}

.wrl-section .entry-content a {
	color: var(--wrl-accent);
	text-underline-offset: 3px;
}

.wrl-section .entry-content a:hover {
	color: var(--wrl-text-heading);
}

.wrl-section .entry-content blockquote {
	border-left-color: var(--wrl-accent);
	color: var(--wrl-text-primary);
	font-style: italic;
}

/* -------------------------------------------------------------------------
   Site footer — seamless depth (overlaps last section fade; no hard edge)
   ------------------------------------------------------------------------- */
.wrl-site-footer {
	position: relative;
	z-index: 1;
	border: none;
	box-shadow: none;
	outline: none;
	padding: 2.75rem 1.5rem 3.25rem;
}

/* Pull up into the section’s transparent tail so there is no visible seam. */
body.wrl-front-page:not(.wrl-ocean-off) .wrl-site-footer {
	margin-top: -8.25rem;
	padding-top: calc(2.75rem + 8.25rem);
	background: linear-gradient(
		180deg,
		rgba(8, 14, 24, 0) 0%,
		rgba(5, 10, 20, 0.02) 18%,
		rgba(3, 7, 14, calc(var(--wrl-footer-bg-alpha, 0.88) * 0.28)) 52%,
		rgba(1, 3, 8, calc(var(--wrl-footer-bg-alpha, 0.88) * 0.62)) 82%,
		rgba(0, 0, 0, 0.94) 100%
	);
}

/* Genesis / Yak wrappers sometimes paint a flat band — strip only when not our footer. */
body.wrl-front-page:not(.wrl-ocean-off) .site-footer:not(.wrl-site-footer) {
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	padding-block: 0 !important;
}

/* Social chips: glassy so they don’t read as “stuck on a rectangle”. */
body.wrl-front-page:not(.wrl-ocean-off) .wrl-site-footer__social .wrl-social__link {
	background: rgba(6, 14, 28, 0.5);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(91, 164, 201, 0.16);
}

body.wrl-ocean-off .wrl-site-footer {
	background: var(--wrl-bg-deep);
	border-top: 1px solid var(--wrl-border);
	margin-top: 0;
	padding: 2.5rem 1.5rem 3rem;
}

body.wrl-ocean-off .wrl-site-footer__social .wrl-social__link {
	background: var(--wrl-bg-surface);
	border: 1px solid var(--wrl-border);
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

.wrl-site-footer__inner {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
}

.wrl-site-footer__social {
	margin: 0 0 1.25rem;
}

.wrl-site-footer__social .wrl-social__link {
	width: 2.65rem;
	height: 2.65rem;
	background: var(--wrl-bg-surface);
	color: var(--wrl-text-heading);
	border: 1px solid var(--wrl-border);
}

.wrl-site-footer__social .wrl-social__link i {
	font-size: 1.15rem;
}

.wrl-site-footer__legal {
	max-width: 42rem;
	margin: 0 auto;
	padding: 0 0.25rem;
	text-align: center;
}

.wrl-site-footer__legal-lead {
	margin: 0 0 0.65rem;
	font-size: clamp(0.68rem, 1.75vw, 0.78rem);
	font-weight: 600;
	line-height: 1.45;
	color: var(--wrl-text-secondary);
}

.wrl-site-footer__legal-body {
	margin: 0;
	font-size: clamp(0.62rem, 1.6vw, 0.72rem);
	font-weight: 300;
	line-height: 1.6;
	color: var(--wrl-text-dim);
}

.wrl-site-footer__design {
	margin: 1rem 0 0;
	padding: 0 0.25rem;
	font-size: clamp(0.58rem, 1.5vw, 0.68rem);
	font-weight: 300;
	line-height: 1.45;
	color: var(--wrl-text-dim);
	text-align: center;
}

.wrl-site-footer__design a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.wrl-site-footer__design a:hover {
	color: var(--wrl-text-secondary);
}

/* -------------------------------------------------------------------------
   Mobile
   ------------------------------------------------------------------------- */
@media (max-width: 600px) {
	.wrl-portals__inner {
		gap: 1.5rem;
	}

	.wrl-portal {
		padding: 0.75rem 0.75rem;
	}

	.wrl-portal__icon {
		font-size: 1.25rem;
	}

	.wrl-portal__label {
		font-size: 0.65rem;
	}
}
