:root {
	--ink: #080808;
	--ink-soft: #111111;
	--charcoal: #1b1a19;
	--bone: #f2ede3;
	--paper: #fbf8f2;
	--blood: #b51f2e;
	--blood-dark: #7f101b;
	--ash: #aaa49b;
	--line-dark: rgba(242, 237, 227, 0.2);
	--line-light: rgba(8, 8, 8, 0.18);
	--page: min(100% - 48px, 1380px);
	--reading: min(100% - 48px, 760px);
	--display: Georgia, "Times New Roman", serif;
	--sans: Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--ink);
	color: var(--bone);
	font-family: var(--sans);
	font-size: 17px;
	line-height: 1.65;
	overflow-x: hidden;
	text-rendering: optimizeLegibility;
}

body.menu-is-open {
	overflow: hidden;
}

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

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.22em;
}

a:hover {
	text-decoration-color: var(--blood);
}

button,
input,
textarea,
select {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

:focus-visible {
	outline: 3px solid var(--blood);
	outline-offset: 4px;
}

::selection {
	background: var(--blood);
	color: #fff;
}

.site-shell {
	min-height: 100vh;
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 9999;
	padding: 10px 14px;
	background: var(--paper);
	color: var(--ink);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transform: translateY(-160%);
}

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

.site-header {
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 100;
	display: flex;
	width: var(--page);
	min-height: 96px;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--line-dark);
	transform: translateX(-50%);
}

body.admin-bar .site-header {
	top: 32px;
}

body:not(.ded-home) .site-header {
	width: 100%;
	padding-right: max(24px, calc((100vw - 1380px) / 2));
	padding-left: max(24px, calc((100vw - 1380px) / 2));
	border-bottom-color: var(--line-dark);
	background: var(--ink);
}

.site-brand {
	display: block;
	width: 108px;
	height: 72px;
	padding: 6px 0;
}

.site-brand img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.site-navigation {
	display: flex;
	align-items: center;
	gap: 36px;
}

.site-navigation .menu,
.site-navigation ul {
	display: flex;
	margin: 0;
	padding: 0;
	align-items: center;
	gap: clamp(18px, 2.4vw, 38px);
	list-style: none;
}

.site-navigation a {
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-decoration: none;
	text-transform: uppercase;
}

.site-navigation .menu a::after {
	display: block;
	width: 0;
	height: 1px;
	margin-top: 4px;
	background: var(--blood);
	content: "";
	transition: width 180ms ease;
}

.site-navigation .menu a:hover::after,
.site-navigation .current-menu-item > a::after {
	width: 100%;
}

.header-listen {
	display: inline-flex;
	min-height: 44px;
	padding: 0 18px;
	align-items: center;
	gap: 10px;
	border: 1px solid var(--bone);
	transition: background 180ms ease, color 180ms ease;
}

.header-listen:hover {
	background: var(--bone);
	color: var(--ink);
}

.menu-toggle {
	display: none;
	color: var(--bone);
	border: 0;
	background: transparent;
}

.arrow {
	display: inline-block;
	font-style: normal;
	transition: transform 160ms ease;
}

a:hover .arrow {
	transform: translate(2px, -2px);
}

.eyebrow {
	margin: 0 0 20px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1.2;
	text-transform: uppercase;
}

.hero {
	position: relative;
	display: grid;
	min-height: 850px;
	grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
	align-items: stretch;
	overflow: hidden;
	background:
		radial-gradient(circle at 25% 35%, rgba(181, 31, 46, 0.12), transparent 31%),
		linear-gradient(125deg, #090909 0%, #090909 60%, #111 100%);
}

.hero::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 49%;
	width: 1px;
	background: linear-gradient(to bottom, transparent 8%, var(--line-dark) 20%, var(--line-dark) 80%, transparent 96%);
	content: "";
}

.hero-copy {
	z-index: 3;
	display: flex;
	max-width: 760px;
	padding: 190px 6vw 120px max(24px, calc((100vw - 1380px) / 2));
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.hero-logo {
	width: clamp(145px, 13vw, 205px);
	max-height: 155px;
	margin: 0 0 18px -8px;
	object-fit: contain;
	object-position: left center;
}

.hero h1,
.section-heading h2,
.section-kicker h2,
.band-copy h2,
.book-copy h2,
.closing-section h2,
.archive-header h1,
.entry-header h1,
.error-copy h1 {
	margin: 0;
	font-family: var(--display);
	font-weight: 400;
	letter-spacing: -0.045em;
	line-height: 0.94;
}

.hero h1 {
	max-width: 780px;
	font-size: clamp(3.45rem, 6.2vw, 7.6rem);
}

.hero h1::first-line {
	color: var(--paper);
}

.hero-deck {
	max-width: 650px;
	margin: 36px 0 0;
	color: #cbc6bd;
	font-size: clamp(1rem, 1.2vw, 1.2rem);
	line-height: 1.7;
}

.hero-actions,
.closing-actions {
	display: flex;
	margin-top: 42px;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.button {
	display: inline-flex;
	min-height: 54px;
	padding: 0 22px;
	align-items: center;
	justify-content: center;
	gap: 12px;
	border: 1px solid currentColor;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
	transform: translateY(-2px);
}

.button-primary {
	border-color: var(--blood);
	background: var(--blood);
	color: #fff;
}

.button-primary:hover {
	border-color: #dc3746;
	background: #dc3746;
}

.button-ghost {
	border-color: var(--line-dark);
	color: var(--bone);
}

.button-ghost:hover {
	border-color: var(--bone);
	background: var(--bone);
	color: var(--ink);
}

.button-dark {
	border-color: var(--ink);
	background: var(--ink);
	color: var(--bone);
}

.button-dark:hover {
	border-color: var(--blood);
	background: var(--blood);
}

.hero-art {
	position: relative;
	min-height: 100%;
	overflow: hidden;
	background: #000;
}

.hero-art::after {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, var(--ink) 0%, transparent 22%),
		linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 35%);
	content: "";
	pointer-events: none;
}

.hero-art > img {
	position: absolute;
	right: -11%;
	bottom: 8%;
	width: 115%;
	max-width: none;
	filter: contrast(1.08);
}

.art-credit {
	position: absolute;
	right: 28px;
	bottom: 24px;
	z-index: 2;
	margin: 0;
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.hero-release {
	position: absolute;
	right: max(24px, calc((100vw - 1380px) / 2));
	bottom: 34px;
	z-index: 5;
	display: grid;
	width: min(285px, 30vw);
	padding: 20px;
	border-top: 2px solid var(--blood);
	background: rgba(8, 8, 8, 0.86);
	backdrop-filter: blur(8px);
}

.hero-release span,
.hero-release small {
	color: var(--ash);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.hero-release strong {
	margin: 6px 0 4px;
	font-family: var(--display);
	font-size: 1.4rem;
	font-weight: 400;
}

.marquee {
	overflow: hidden;
	border-top: 1px solid #eae3d7;
	border-bottom: 1px solid #eae3d7;
	background: var(--blood);
	color: #fff;
}

.marquee div {
	width: max-content;
	padding: 14px 0;
	font-size: 0.7rem;
	font-weight: 900;
	letter-spacing: 0.15em;
	word-spacing: 1.2em;
	animation: crawl 28s linear infinite;
}

@keyframes crawl {
	to { transform: translateX(-50%); }
}

.listen-section {
	display: grid;
	width: var(--page);
	margin: 0 auto;
	padding: 100px 0 115px;
	grid-template-columns: minmax(250px, 0.65fr) 1.35fr;
	gap: 7vw;
}

.section-kicker h2 {
	max-width: 380px;
	font-size: clamp(2.8rem, 4.5vw, 5.4rem);
}

.platform-links {
	border-top: 1px solid var(--line-dark);
}

.platform-links a {
	display: grid;
	min-height: 72px;
	padding: 0 8px;
	grid-template-columns: 52px 1fr auto;
	align-items: center;
	border-bottom: 1px solid var(--line-dark);
	font-family: var(--display);
	font-size: clamp(1.15rem, 1.8vw, 1.7rem);
	text-decoration: none;
	transition: padding 180ms ease, background 180ms ease;
}

.platform-links a:hover {
	padding-right: 18px;
	padding-left: 18px;
	background: rgba(242, 237, 227, 0.06);
}

.platform-links a > span:first-child {
	color: var(--ash);
	font-family: var(--sans);
	font-size: 0.64rem;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.videos-section {
	padding: 120px max(24px, calc((100vw - 1380px) / 2));
	background: var(--bone);
	color: var(--ink);
}

.section-heading {
	display: grid;
	margin-bottom: 72px;
	grid-template-columns: 1.3fr minmax(280px, 0.7fr);
	align-items: end;
	gap: 8vw;
}

.section-heading h2,
.band-copy h2,
.closing-section h2 {
	font-size: clamp(3rem, 5.4vw, 6.6rem);
}

.section-heading > p {
	max-width: 580px;
	margin: 0 0 8px;
	color: #514d47;
}

.video-list {
	border-top: 1px solid var(--line-light);
}

.video-card {
	display: grid;
	padding: 64px 0;
	grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.4fr);
	align-items: center;
	gap: clamp(38px, 6vw, 94px);
	border-bottom: 1px solid var(--line-light);
}

.video-card:nth-child(even) {
	grid-template-columns: minmax(280px, 0.4fr) minmax(0, 1.6fr);
}

.video-card:nth-child(even) .video-frame {
	order: 2;
}

.video-frame {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #000;
	box-shadow: 0 24px 60px rgba(10, 10, 10, 0.18);
}

.video-frame::before {
	position: absolute;
	top: -8px;
	left: -8px;
	z-index: 1;
	width: 42px;
	height: 42px;
	border-top: 2px solid var(--blood);
	border-left: 2px solid var(--blood);
	content: "";
	pointer-events: none;
}

.video-frame iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.video-meta > p:first-child {
	margin: 0 0 18px;
	color: #69635b;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.video-meta > p:first-child span {
	display: inline-grid;
	width: 34px;
	height: 34px;
	margin-right: 10px;
	place-items: center;
	border-radius: 50%;
	background: var(--blood);
	color: #fff;
}

.video-meta h3 {
	margin: 0;
	font-family: var(--display);
	font-size: clamp(2.2rem, 3.6vw, 4.4rem);
	font-weight: 400;
	letter-spacing: -0.04em;
	line-height: 0.96;
}

.video-meta > p:not(:first-child) {
	margin: 24px 0;
	color: #554f48;
}

.text-link,
.section-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-decoration: none;
	text-transform: uppercase;
}

.text-link:hover,
.section-link:hover {
	color: var(--blood);
}

.section-link {
	margin-top: 56px;
	padding-bottom: 8px;
	border-bottom: 1px solid currentColor;
}

.art-section {
	padding: 130px max(24px, calc((100vw - 1380px) / 2)) 150px;
	background: #0c0c0c;
}

.art-heading > p {
	color: var(--ash);
}

.art-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-auto-rows: 85px;
	gap: 22px;
}

.art-card {
	position: relative;
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--line-dark);
	background: var(--paper);
}

.art-card-1 { grid-column: span 5; grid-row: span 7; background: #000; }
.art-card-2 { grid-column: span 7; grid-row: span 5; background: #333; }
.art-card-3 { grid-column: span 4; grid-row: span 6; background: #000; }
.art-card-4 { grid-column: span 3; grid-row: span 6; }
.art-card-5 { grid-column: span 5; grid-row: span 5; }
.art-card-6 { grid-column: span 7; grid-row: span 5; }

.art-card > a {
	display: block;
	width: 100%;
	height: calc(100% - 72px);
	overflow: hidden;
}

.art-card img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 380ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.art-card:hover img {
	transform: scale(1.025);
}

.art-card figcaption {
	display: grid;
	height: 72px;
	padding: 0 18px;
	grid-template-columns: 40px 1fr;
	align-items: center;
	gap: 12px;
	border-top: 1px solid var(--line-light);
	background: var(--bone);
	color: var(--ink);
}

.art-card figcaption > span {
	color: #777168;
	font-size: 0.64rem;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.art-card figcaption strong,
.art-card figcaption small {
	display: block;
	line-height: 1.3;
}

.art-card figcaption strong {
	font-family: var(--display);
	font-size: 1.05rem;
	font-weight: 400;
}

.art-card figcaption small {
	margin-top: 3px;
	color: #6d675f;
	font-size: 0.61rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.gallery-note {
	margin: 30px 0 0;
	color: var(--ash);
	font-size: 0.76rem;
}

.book-section {
	display: grid;
	min-height: 760px;
	grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
	background: var(--paper);
	color: var(--ink);
}

.book-art {
	position: relative;
	display: grid;
	min-height: 760px;
	place-items: center;
	overflow: hidden;
	border-right: 1px solid var(--line-light);
	background:
		linear-gradient(rgba(8, 8, 8, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(8, 8, 8, 0.06) 1px, transparent 1px),
		#ede7dc;
	background-size: 48px 48px;
}

.book-art img {
	position: relative;
	z-index: 2;
	width: min(76%, 680px);
	mix-blend-mode: multiply;
}

.book-number {
	position: absolute;
	top: -0.18em;
	left: -0.05em;
	color: rgba(8, 8, 8, 0.055);
	font-family: var(--display);
	font-size: clamp(15rem, 32vw, 36rem);
	line-height: 1;
}

.dark-credit {
	color: var(--ink);
}

.book-copy {
	display: flex;
	padding: 110px clamp(38px, 7vw, 120px);
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.book-copy h2 {
	font-size: clamp(4.5rem, 8vw, 9.5rem);
}

.book-subtitle {
	margin: 15px 0 30px;
	color: var(--blood);
	font-family: var(--display);
	font-size: clamp(1.35rem, 2.2vw, 2.2rem);
	font-style: italic;
}

.book-lead {
	margin: 0 0 20px;
	font-family: var(--display);
	font-size: clamp(1.35rem, 2vw, 1.9rem);
	line-height: 1.4;
}

.book-copy > p:not(.eyebrow):not(.book-subtitle):not(.book-lead) {
	max-width: 650px;
	color: #514d47;
}

.book-details {
	width: 100%;
	margin: 34px 0 42px;
	border-top: 1px solid var(--line-light);
}

.book-details > div {
	display: grid;
	padding: 12px 0;
	grid-template-columns: 140px 1fr;
	border-bottom: 1px solid var(--line-light);
}

.book-details dt {
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.book-details dd {
	margin: 0;
	font-family: var(--display);
	font-size: 1.05rem;
}

.band-section {
	display: grid;
	min-height: 760px;
	grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1.2fr);
	background: var(--blood);
}

.band-art {
	display: grid;
	place-items: center;
	overflow: hidden;
	background: var(--paper);
}

.band-art img {
	width: 120%;
	max-width: none;
	mix-blend-mode: multiply;
}

.band-copy {
	display: flex;
	padding: 110px max(38px, calc((100vw - 1380px) / 2));
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.band-copy > p:not(.eyebrow) {
	max-width: 760px;
	font-size: 1.06rem;
}

.member-list {
	width: 100%;
	max-width: 760px;
	margin: 36px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.member-list > div {
	display: grid;
	padding: 15px 0;
	grid-template-columns: minmax(160px, 0.7fr) 1.3fr;
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.member-list span {
	font-family: var(--display);
	font-size: 1.15rem;
}

.member-list small {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.light-link:hover {
	color: var(--paper);
}

.journal-section {
	padding: 130px max(24px, calc((100vw - 1380px) / 2));
	background: var(--paper);
	color: var(--ink);
}

.journal-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid var(--line-light);
	border-left: 1px solid var(--line-light);
}

.journal-card {
	display: flex;
	min-height: 405px;
	padding: clamp(26px, 3vw, 44px);
	flex-direction: column;
	border-right: 1px solid var(--line-light);
	border-bottom: 1px solid var(--line-light);
	transition: background 180ms ease;
}

.journal-card:hover {
	background: #eee8dd;
}

.journal-date {
	margin: 0 0 44px;
	color: #6d675f;
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.journal-card h3 {
	margin: 0;
	font-family: var(--display);
	font-size: clamp(1.8rem, 2.5vw, 2.8rem);
	font-weight: 400;
	letter-spacing: -0.035em;
	line-height: 1.06;
}

.journal-card h3 a {
	text-decoration: none;
}

.journal-card > div {
	margin: 22px 0 32px;
	color: #5d574f;
}

.journal-card > div p {
	margin: 0;
}

.journal-card .text-link {
	margin-top: auto;
}

.dark-section-link {
	color: var(--ink);
}

.closing-section {
	padding: 150px max(24px, calc((100vw - 1380px) / 2));
	background:
		radial-gradient(circle at 90% 40%, rgba(181, 31, 46, 0.24), transparent 30%),
		var(--ink);
}

.closing-section h2 {
	max-width: 1000px;
}

.site-footer {
	display: grid;
	padding: 90px max(24px, calc((100vw - 1380px) / 2)) 28px;
	grid-template-columns: 1.2fr 1fr 0.8fr;
	gap: 7vw;
	border-top: 1px solid var(--line-dark);
	background: #050505;
}

.footer-lead img {
	width: 120px;
	height: 100px;
	object-fit: contain;
	object-position: left;
}

.footer-lead p,
.footer-credits p {
	max-width: 420px;
	color: var(--ash);
	font-size: 0.86rem;
}

.footer-credits strong {
	color: var(--bone);
}

.footer-links {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.footer-links a {
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-decoration: none;
	text-transform: uppercase;
}

.footer-bottom {
	display: flex;
	margin-top: 64px;
	padding-top: 24px;
	grid-column: 1 / -1;
	justify-content: space-between;
	border-top: 1px solid var(--line-dark);
	color: #77736d;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* Posts, pages, archives, search, and WordPress content. */
.content-main,
.error-main {
	min-height: 70vh;
	padding: 180px max(24px, calc((100vw - 1180px) / 2)) 120px;
	background: var(--paper);
	color: var(--ink);
}

.archive-header {
	max-width: 900px;
	margin-bottom: 70px;
	padding-bottom: 46px;
	border-bottom: 1px solid var(--line-light);
}

.archive-header h1,
.entry-header h1,
.error-copy h1 {
	font-size: clamp(3.5rem, 7vw, 7.8rem);
}

.archive-header > p:not(.eyebrow),
.archive-description {
	max-width: 680px;
	margin: 26px 0 0;
	color: #5c574f;
}

.post-list {
	border-top: 1px solid var(--line-light);
}

.post-card {
	display: grid;
	padding: 38px 0;
	grid-template-columns: minmax(150px, 0.25fr) minmax(0, 1fr) auto;
	align-items: start;
	gap: 42px;
	border-bottom: 1px solid var(--line-light);
}

.post-card-meta {
	display: flex;
	flex-direction: column;
	color: #6a645c;
	font-size: 0.63rem;
	font-weight: 800;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.post-card h2 {
	margin: 0;
	font-family: var(--display);
	font-size: clamp(2rem, 3.3vw, 3.6rem);
	font-weight: 400;
	letter-spacing: -0.035em;
	line-height: 1.02;
}

.post-card h2 a {
	text-decoration: none;
}

.post-card-excerpt {
	max-width: 720px;
	color: #5c574f;
}

.content-entry {
	width: 100%;
}

.entry-header {
	max-width: 1050px;
	margin-bottom: 60px;
}

.entry-meta {
	margin: 24px 0 0;
	color: #6a645c;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.entry-featured {
	width: min(100%, 1180px);
	margin: 0 auto 64px;
}

.entry-featured img {
	width: 100%;
}

.entry-content {
	width: min(100%, 760px);
	margin: 0 auto;
	font-family: var(--display);
	font-size: 1.13rem;
	line-height: 1.78;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin: 2em 0 0.65em;
	font-family: var(--sans);
	line-height: 1.18;
}

.entry-content h2 {
	font-size: 2.15rem;
}

.entry-content h3 {
	font-size: 1.55rem;
}

.entry-content a {
	color: var(--blood-dark);
}

.entry-content img,
.entry-content iframe,
.entry-content video {
	max-width: 100%;
}

.entry-content .alignwide {
	width: min(1180px, calc(100vw - 48px));
	max-width: none;
	margin-right: 50%;
	margin-left: 50%;
	transform: translateX(-50%);
}

.entry-content .alignfull {
	width: 100vw;
	max-width: none;
	margin-right: 50%;
	margin-left: 50%;
	transform: translateX(-50%);
}

.entry-content blockquote {
	margin: 2.4em 0;
	padding: 0 0 0 24px;
	border-left: 4px solid var(--blood);
	font-size: 1.35rem;
	font-style: italic;
}

.entry-content pre,
.entry-content code {
	font-size: 0.9em;
}

.entry-content pre {
	padding: 20px;
	overflow-x: auto;
	background: #e9e2d6;
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
}

.entry-content th,
.entry-content td {
	padding: 12px;
	border: 1px solid var(--line-light);
	text-align: left;
}

.entry-content figcaption,
.wp-caption-text {
	color: #6a645c;
	font-family: var(--sans);
	font-size: 0.75rem;
}

.entry-footer,
.post-navigation,
.comments-area {
	width: min(100%, 760px);
	margin: 64px auto 0;
	padding-top: 30px;
	border-top: 1px solid var(--line-light);
}

.post-navigation .nav-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.post-navigation a {
	display: flex;
	flex-direction: column;
	text-decoration: none;
}

.post-navigation span {
	color: #6a645c;
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.post-navigation strong {
	font-family: var(--display);
	font-size: 1.25rem;
	font-weight: 400;
}

.nav-next {
	text-align: right;
}

.pagination,
.posts-navigation,
.comments-pagination {
	margin-top: 48px;
}

.page-numbers {
	display: inline-grid;
	min-width: 42px;
	height: 42px;
	margin-right: 6px;
	place-items: center;
	border: 1px solid var(--line-light);
	text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
	background: var(--ink);
	color: var(--bone);
}

.comments-area textarea,
.comments-area input:not([type="submit"]) {
	width: 100%;
	padding: 12px;
	border: 1px solid var(--line-light);
	background: #fff;
}

.comments-area input[type="submit"],
.search-submit {
	padding: 12px 18px;
	border: 0;
	background: var(--blood);
	color: #fff;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.search-form {
	display: flex;
	max-width: 620px;
	margin-top: 30px;
	gap: 10px;
}

.search-form label {
	flex: 1;
}

.search-field {
	width: 100%;
	height: 48px;
	padding: 0 14px;
	border: 1px solid var(--line-light);
	background: #fff;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.error-main {
	display: grid;
	grid-template-columns: 0.7fr 1.3fr;
	align-items: center;
	gap: 60px;
}

.error-signal {
	color: #e1dbd0;
	font-family: var(--display);
	font-size: clamp(10rem, 26vw, 28rem);
	line-height: 0.8;
}

.error-copy p:not(.eyebrow) {
	max-width: 560px;
	color: #5c574f;
}

.error-copy .button {
	margin-top: 24px;
}

@media (max-width: 1100px) {
	:root {
		--page: min(100% - 36px, 1380px);
	}

	.hero {
		min-height: 760px;
		grid-template-columns: 1.08fr 0.92fr;
	}

	.hero-copy {
		padding-left: 36px;
	}

	.hero-art > img {
		right: -28%;
		width: 145%;
	}

	.hero-release {
		right: 22px;
		width: 260px;
	}

	.art-grid {
		grid-auto-rows: 70px;
	}

	.book-section {
		grid-template-columns: 0.9fr 1.1fr;
	}

	.journal-grid {
		grid-template-columns: 1fr 1fr;
	}

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

	.footer-links {
		grid-column: 1 / -1;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 18px 28px;
	}
}

@media (max-width: 820px) {
	body.admin-bar .site-header {
		top: 46px;
	}

	.site-header {
		min-height: 80px;
	}

	.site-brand {
		width: 86px;
		height: 62px;
	}

	.menu-toggle {
		display: inline-flex;
		min-height: 44px;
		padding: 0;
		align-items: center;
		gap: 10px;
		font-size: 0.7rem;
		font-weight: 800;
		letter-spacing: 0.13em;
		text-transform: uppercase;
	}

	.menu-toggle i,
	.menu-toggle i::before {
		display: block;
		width: 24px;
		height: 1px;
		background: currentColor;
		content: "";
		transition: transform 180ms ease;
	}

	.menu-toggle i::before {
		transform: translateY(7px);
	}

	.menu-is-open .menu-toggle i {
		transform: rotate(45deg);
	}

	.menu-is-open .menu-toggle i::before {
		transform: rotate(-90deg);
	}

	.site-navigation {
		position: fixed;
		inset: 80px 0 auto;
		display: none;
		min-height: calc(100vh - 80px);
		padding: 54px 28px;
		align-items: flex-start;
		flex-direction: column;
		background: rgba(8, 8, 8, 0.98);
	}

	.admin-bar .site-navigation {
		top: 126px;
		min-height: calc(100vh - 126px);
	}

	.menu-is-open .site-navigation {
		display: flex;
	}

	.site-navigation .menu,
	.site-navigation ul {
		width: 100%;
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.site-navigation .menu li {
		border-bottom: 1px solid var(--line-dark);
	}

	.site-navigation .menu a {
		display: block;
		padding: 15px 0;
		font-family: var(--display);
		font-size: 2rem;
		font-weight: 400;
		letter-spacing: -0.02em;
		text-transform: none;
	}

	.site-navigation .menu a::after {
		display: none;
	}

	.hero {
		display: block;
		min-height: 940px;
	}

	.hero::before {
		display: none;
	}

	.hero-copy {
		position: relative;
		z-index: 5;
		min-height: 720px;
		padding: 145px 24px 160px;
		background: linear-gradient(180deg, rgba(8, 8, 8, 0.95) 0%, rgba(8, 8, 8, 0.78) 70%, transparent 100%);
	}

	.hero h1 {
		font-size: clamp(3.35rem, 15vw, 6rem);
	}

	.hero-art {
		position: absolute;
		inset: 0;
	}

	.hero-art > img {
		right: -16%;
		bottom: 2%;
		width: 132%;
	}

	.hero-art::after {
		background: linear-gradient(180deg, rgba(8, 8, 8, 0.35), transparent 55%, rgba(0, 0, 0, 0.58));
	}

	.hero-release {
		right: 18px;
		bottom: 18px;
		left: 18px;
		width: auto;
	}

	.listen-section,
	.section-heading,
	.video-card,
	.video-card:nth-child(even),
	.book-section,
	.band-section,
	.error-main {
		grid-template-columns: 1fr;
	}

	.listen-section {
		padding: 80px 0 90px;
		gap: 50px;
	}

	.section-heading {
		margin-bottom: 50px;
		gap: 28px;
	}

	.video-card,
	.video-card:nth-child(even) {
		padding: 48px 0;
		gap: 30px;
	}

	.video-card:nth-child(even) .video-frame {
		order: 0;
	}

	.art-grid {
		grid-template-columns: 1fr 1fr;
		grid-auto-rows: auto;
	}

	.art-card,
	.art-card-1,
	.art-card-2,
	.art-card-3,
	.art-card-4,
	.art-card-5,
	.art-card-6 {
		grid-column: auto;
		grid-row: auto;
	}

	.art-card > a {
		aspect-ratio: 4 / 5;
	}

	.book-art,
	.band-art {
		min-height: 600px;
		border-right: 0;
		border-bottom: 1px solid var(--line-light);
	}

	.book-copy,
	.band-copy {
		padding: 90px 28px;
	}

	.band-section {
		min-height: auto;
	}

	.band-art img {
		width: 105%;
	}

	.post-card {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.post-card-meta {
		flex-direction: row;
		gap: 20px;
	}

	.error-signal {
		font-size: 12rem;
	}
}

@media (max-width: 620px) {
	:root {
		--page: min(100% - 28px, 1380px);
		--reading: min(100% - 28px, 760px);
	}

	body {
		font-size: 16px;
	}

	.hero {
		min-height: 880px;
	}

	.hero-copy {
		min-height: 660px;
		padding-right: 18px;
		padding-left: 18px;
	}

	.hero-logo {
		width: 135px;
	}

	.hero-actions,
	.closing-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.button {
		width: 100%;
	}

	.hero-art > img {
		right: -34%;
		width: 168%;
	}

	.videos-section,
	.art-section,
	.journal-section,
	.closing-section {
		padding-right: 18px;
		padding-left: 18px;
	}

	.art-grid {
		grid-template-columns: 1fr;
	}

	.art-card > a {
		aspect-ratio: 1 / 1;
	}

	.book-art,
	.band-art {
		min-height: 430px;
	}

	.book-copy h2 {
		font-size: 4.4rem;
	}

	.book-details > div,
	.member-list > div {
		grid-template-columns: 1fr;
		gap: 5px;
	}

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

	.journal-card {
		min-height: 330px;
	}

	.site-footer {
		gap: 30px;
	}

	.footer-links {
		grid-column: auto;
		flex-direction: column;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
	}

	.content-main,
	.error-main {
		padding: 140px 18px 90px;
	}

	.entry-content {
		font-size: 1.04rem;
	}

	.post-navigation .nav-links {
		grid-template-columns: 1fr;
	}

	.nav-next {
		text-align: left;
	}
}

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

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
