:root {
	--navy: #020b18;
	--charcoal: #061120;
	--ink: #050a12;
	--gold: #c8922e;
	--gold-dark: #986817;
	--ivory: #f5f1e8;
	--gray: #b9b4aa;
	--muted: #b9b4aa;
	--red: #8b1e22;
	--line: rgba(185, 180, 170, 0.16);
	--panel: rgba(8, 18, 32, 0.76);
	--font-heading: "Playfair Display", Georgia, serif;
	--font-body: Inter, Arial, sans-serif;
	--font-ui: Montserrat, Inter, Arial, sans-serif;
	--font-logo: "Playfair Display", Georgia, serif;
	--container: 1080px;
}

/* Topic Pages */
.topic-page {
	background: var(--navy);
}

.topic-page-hero {
	background-image: linear-gradient(90deg, rgba(2, 11, 24, 0.98), rgba(2, 11, 24, 0.7) 58%, rgba(2, 11, 24, 0.35)), var(--topic-hero);
	background-position: center;
	background-size: cover;
	border-bottom: 1px solid var(--line);
	min-height: 660px;
}

.topic-page-hero-inner {
	padding-bottom: 100px;
	padding-top: 190px;
}

.topic-breadcrumb {
	align-items: center;
	color: var(--gray);
	display: flex;
	font-family: var(--font-ui);
	font-size: 10px;
	font-weight: 700;
	gap: 12px;
	letter-spacing: 1.2px;
	margin-bottom: 80px;
	text-transform: uppercase;
}

.topic-breadcrumb a {
	color: var(--gray);
}

.topic-breadcrumb a:hover {
	color: var(--gold);
}

.topic-page-hero h1 {
	color: var(--ivory);
	font-family: var(--font-heading);
	font-size: clamp(64px, 9vw, 124px);
	font-weight: 600;
	letter-spacing: -4px;
	line-height: 0.9;
	margin: 16px 0 30px;
	max-width: 940px;
}

.topic-page-lead {
	color: var(--gray);
	font-size: clamp(19px, 2vw, 25px);
	line-height: 1.65;
	max-width: 760px;
}

.topic-why-section,
.topic-content-section,
.topic-path-section,
.topic-related-section {
	border-bottom: 1px solid var(--line);
	padding: 110px 0;
}

.topic-why-grid {
	display: grid;
	gap: 62px;
	grid-template-columns: 0.75fr 1.25fr;
}

.topic-why-grid h2,
.topic-related-section h2 {
	color: var(--ivory);
	font-family: var(--font-heading);
	font-size: clamp(44px, 5vw, 70px);
	font-weight: 600;
	letter-spacing: -2px;
	line-height: 1;
	margin: 14px 0;
}

.topic-long-description {
	color: var(--gray);
	font-size: 18px;
	line-height: 1.85;
}

.topic-long-description p:first-child {
	color: var(--ivory);
	font-family: var(--font-heading);
	font-size: 28px;
	line-height: 1.55;
}

.topic-why-grid blockquote {
	border-left: 2px solid var(--gold);
	color: var(--ivory);
	font-family: var(--font-heading);
	font-size: 30px;
	font-style: italic;
	grid-column: 2;
	line-height: 1.5;
	margin: 10px 0 0;
	padding: 12px 0 12px 32px;
}

.topic-section-heading {
	align-items: baseline;
	display: flex;
	gap: 26px;
	margin-bottom: 50px;
}

.topic-section-heading > span {
	color: var(--gold);
	font-family: var(--font-ui);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
}

.topic-section-heading h2 {
	color: var(--ivory);
	font-family: var(--font-heading);
	font-size: clamp(38px, 4vw, 58px);
	font-weight: 600;
	letter-spacing: -1.5px;
	margin: 0;
}

.topic-article-grid {
	background: var(--line);
	display: grid;
	gap: 1px;
	grid-template-columns: 1.35fr 1fr 1fr;
}

.topic-content-card {
	background: var(--navy);
	display: flex;
	flex-direction: column;
}

.topic-content-card.is-featured {
	grid-row: span 2;
}

.topic-content-media {
	align-items: center;
	aspect-ratio: 16 / 10;
	background: #07172a;
	display: flex;
	justify-content: center;
	overflow: hidden;
}

.topic-content-card.is-featured .topic-content-media {
	aspect-ratio: auto;
	flex: 1;
	min-height: 400px;
}

.topic-content-media img {
	height: 100%;
	object-fit: cover;
	transition: transform 450ms ease;
	width: 100%;
}

.topic-content-card:hover .topic-content-media img {
	transform: scale(1.035);
}

.topic-content-media > span {
	color: var(--gold);
	font-family: var(--font-heading);
	font-size: 52px;
}

.topic-content-copy {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 30px;
}

.topic-content-copy h3 {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 600;
	line-height: 1.2;
	margin: 20px 0 14px;
}

.topic-content-copy h3 a {
	color: var(--ivory);
}

.topic-content-copy > p {
	color: var(--gray);
	font-size: 14px;
	line-height: 1.7;
}

.topic-content-link {
	border-top: 1px solid var(--line);
	color: var(--gold);
	font-family: var(--font-ui);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1px;
	margin-top: auto;
	padding-top: 18px;
	text-transform: uppercase;
}

.topic-books-section {
	background: #061223;
}

.topic-book-grid {
	background: var(--line);
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(4, 1fr);
}

.topic-content-card.is-book .topic-content-media {
	aspect-ratio: 3 / 4;
}

.topic-content-card.is-book .topic-content-media img {
	object-fit: contain;
	padding: 20px;
}

.topic-media-grid {
	display: grid;
	gap: 26px;
	grid-template-columns: repeat(3, 1fr);
}

.topic-content-card.is-media,
.topic-content-card.is-resource {
	border-bottom: 2px solid var(--gold);
}

.topic-path-section {
	background: #040f1e;
}

.topic-reading-path {
	counter-reset: topic-path;
	list-style: none;
	margin: 0;
	padding: 0;
}

.topic-reading-path li {
	align-items: center;
	border-top: 1px solid var(--line);
	counter-increment: topic-path;
	display: grid;
	gap: 30px;
	grid-template-columns: 70px 0.8fr 1.2fr;
	padding: 30px 0;
}

.topic-reading-path li::before {
	color: var(--gold);
	content: counter(topic-path, decimal-leading-zero);
	font-family: var(--font-heading);
	font-size: 26px;
}

.topic-reading-path li > span {
	color: var(--gray);
	font-family: var(--font-ui);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.topic-reading-path h3 {
	font-family: var(--font-heading);
	font-size: 24px;
	font-weight: 600;
	margin: 0;
}

.topic-reading-path h3 a {
	color: var(--ivory);
}

.topic-reading-path p {
	color: var(--gray);
	line-height: 1.65;
	margin: 0;
}

.topic-related-grid {
	background: var(--line);
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 52px;
}

.topic-related-grid a {
	background: var(--navy);
	display: grid;
	min-height: 180px;
	padding: 28px;
}

.topic-related-grid span {
	color: var(--gold);
	font-family: var(--font-ui);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.topic-related-grid strong {
	align-self: center;
	color: var(--ivory);
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 600;
}

.topic-related-grid em {
	align-self: end;
	color: var(--gold);
	font-style: normal;
	justify-self: end;
}

@media (max-width: 980px) {
	.topic-why-grid {
		grid-template-columns: 1fr;
	}

	.topic-why-grid blockquote {
		grid-column: auto;
	}

	.topic-article-grid {
		grid-template-columns: 1fr 1fr;
	}

	.topic-content-card.is-featured {
		grid-column: 1 / -1;
		grid-row: auto;
	}

	.topic-book-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.topic-media-grid,
	.topic-related-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 680px) {
	.topic-page-hero {
		min-height: 600px;
	}

	.topic-page-hero-inner {
		padding-bottom: 70px;
		padding-top: 140px;
	}

	.topic-breadcrumb {
		margin-bottom: 55px;
	}

	.topic-page-hero h1 {
		font-size: 60px;
		letter-spacing: -2px;
	}

	.topic-why-section,
	.topic-content-section,
	.topic-path-section,
	.topic-related-section {
		padding: 76px 0;
	}

	.topic-article-grid,
	.topic-book-grid,
	.topic-media-grid,
	.topic-related-grid {
		grid-template-columns: 1fr;
	}

	.topic-reading-path li {
		align-items: start;
		grid-template-columns: 45px 1fr;
	}

	.topic-reading-path li > p {
		grid-column: 2;
	}
}

/* Knowledge Hub */
.knowledge-hub-page {
	background: linear-gradient(90deg, rgba(200, 146, 46, 0.025) 1px, transparent 1px), var(--navy);
	background-size: 84px 100%;
}

.knowledge-hero {
	align-items: flex-end;
	background-image: var(--knowledge-hero);
	background-position: center;
	background-size: cover;
	display: flex;
	min-height: 72vh;
	overflow: hidden;
	position: relative;
}

.knowledge-hero::before {
	background: linear-gradient(90deg, rgba(2, 11, 24, 0.98), rgba(2, 11, 24, 0.76) 55%, rgba(2, 11, 24, 0.34)), linear-gradient(0deg, var(--navy), transparent 48%);
	content: "";
	inset: 0;
	position: absolute;
}

.knowledge-hero-inner {
	padding-bottom: 100px;
	padding-top: 150px;
	position: relative;
	z-index: 1;
}

.knowledge-hero h1 {
	color: var(--ivory);
	font-family: var(--font-heading);
	font-size: clamp(58px, 8vw, 112px);
	font-weight: 600;
	letter-spacing: -4px;
	line-height: 0.92;
	margin: 14px 0 28px;
	max-width: 850px;
}

.knowledge-hero-inner > p:not(.eyebrow) {
	color: var(--gray);
	font-size: clamp(18px, 2vw, 24px);
	line-height: 1.65;
	max-width: 710px;
}

.knowledge-scroll-cue {
	color: var(--gold);
	display: inline-block;
	font-family: var(--font-ui);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	margin-top: 38px;
	text-transform: uppercase;
}

.knowledge-section {
	border-top: 1px solid var(--line);
	padding: 112px 0;
}

.knowledge-section-heading {
	margin-bottom: 52px;
	max-width: 820px;
}

.knowledge-section-heading.split {
	align-items: end;
	display: flex;
	justify-content: space-between;
	max-width: none;
}

.knowledge-section-heading.split > a {
	color: var(--gold);
	font-family: var(--font-ui);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.knowledge-section-heading h2 {
	color: var(--ivory);
	font-family: var(--font-heading);
	font-size: clamp(42px, 5vw, 68px);
	font-weight: 600;
	letter-spacing: -1.8px;
	line-height: 1;
	margin: 12px 0 0;
}

.knowledge-topic-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.knowledge-topic-card {
	border: 1px solid var(--line);
	color: var(--ivory);
	margin-right: -1px;
	margin-top: -1px;
	min-height: 320px;
	padding: 32px;
	position: relative;
	transition: background 220ms ease, transform 220ms ease;
}

.knowledge-topic-card:hover {
	background: rgba(200, 146, 46, 0.07);
	transform: translateY(-6px);
	z-index: 1;
}

.knowledge-topic-number {
	color: rgba(200, 146, 46, 0.5);
	font-family: var(--font-heading);
	font-size: 18px;
}

.knowledge-topic-card .knowledge-card-meta {
	margin-top: 22px;
}

.knowledge-topic-card h3 {
	font-family: var(--font-heading);
	font-size: 34px;
	font-weight: 600;
	line-height: 1.1;
	margin: 36px 0 18px;
}

.knowledge-topic-card p {
	color: var(--gray);
	line-height: 1.65;
	margin: 0 0 40px;
}

.knowledge-topic-footer {
	align-items: center;
	bottom: 26px;
	color: var(--gold);
	display: flex;
	font-family: var(--font-ui);
	font-size: 11px;
	font-weight: 700;
	justify-content: space-between;
	left: 32px;
	letter-spacing: 1px;
	position: absolute;
	right: 32px;
	text-transform: uppercase;
}

.knowledge-editorial-grid {
	background: var(--line);
	display: grid;
	gap: 1px;
	grid-template-columns: 1.45fr 1fr 1fr;
}

.knowledge-card {
	background: var(--navy);
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.knowledge-card-featured {
	grid-row: span 2;
}

.knowledge-card-media {
	align-items: center;
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, #07182d, #0d2740);
	display: flex;
	justify-content: center;
	overflow: hidden;
}

.knowledge-card-featured .knowledge-card-media {
	aspect-ratio: auto;
	flex: 1;
	min-height: 390px;
}

.knowledge-card-media img {
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease, filter 500ms ease;
	width: 100%;
}

.knowledge-card:hover .knowledge-card-media img {
	filter: saturate(1.12);
	transform: scale(1.035);
}

.knowledge-card-monogram {
	color: rgba(200, 146, 46, 0.7);
	font-family: var(--font-heading);
	font-size: 58px;
}

.knowledge-card-copy {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 30px;
}

.knowledge-card-meta {
	align-items: center;
	color: var(--gold);
	display: flex;
	font-family: var(--font-ui);
	font-size: 10px;
	font-weight: 700;
	justify-content: space-between;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.knowledge-card h3 {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 600;
	line-height: 1.16;
	margin: 20px 0 14px;
}

.knowledge-card h3 a {
	color: var(--ivory);
}

.knowledge-card-copy > p {
	color: var(--gray);
	font-size: 14px;
	line-height: 1.65;
	margin: 0 0 26px;
}

.knowledge-card-footer {
	align-items: center;
	border-top: 1px solid var(--line);
	display: flex;
	font-family: var(--font-ui);
	font-size: 10px;
	font-weight: 700;
	justify-content: space-between;
	letter-spacing: 0.8px;
	margin-top: auto;
	padding-top: 18px;
	text-transform: uppercase;
}

.knowledge-card-footer span {
	color: var(--gray);
}

.knowledge-card-footer a {
	color: var(--gold);
}

.knowledge-books-section {
	background: #061223;
}

.knowledge-books-grid {
	background: var(--line);
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(4, 1fr);
}

.knowledge-book-card .knowledge-card-media {
	aspect-ratio: 3 / 4;
}

.knowledge-book-card .knowledge-card-media img {
	object-fit: contain;
	padding: 20px;
}

.knowledge-media-grid {
	display: grid;
	gap: 28px;
	grid-template-columns: repeat(3, 1fr);
}

.knowledge-media-card {
	border-bottom: 2px solid var(--gold);
}

.knowledge-media-card .knowledge-card-media {
	aspect-ratio: 1 / 1;
}

.knowledge-start-section {
	border-top: 1px solid var(--line);
	padding: 88px 0;
}

.knowledge-start-inner {
	align-items: center;
	display: grid;
	gap: 46px;
	grid-template-columns: auto 1fr auto;
}

.knowledge-start-mark {
	color: var(--gold);
	font-family: var(--font-heading);
	font-size: 70px;
	font-weight: 700;
}

.knowledge-start-inner h2 {
	color: var(--ivory);
	font-family: var(--font-heading);
	font-size: clamp(40px, 5vw, 64px);
	font-weight: 600;
	line-height: 1;
	margin: 8px 0 16px;
}

.knowledge-start-inner > div > p:last-child {
	color: var(--gray);
	font-size: 17px;
	line-height: 1.7;
	margin: 0;
	max-width: 680px;
}

.knowledge-empty {
	border-left: 2px solid var(--gold);
	color: var(--gray);
	grid-column: 1 / -1;
	padding: 20px 24px;
}

@media (max-width: 980px) {
	.knowledge-topic-grid,
	.knowledge-books-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.knowledge-editorial-grid {
		grid-template-columns: 1fr 1fr;
	}

	.knowledge-card-featured {
		grid-column: 1 / -1;
		grid-row: auto;
	}

	.knowledge-media-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.knowledge-start-inner {
		grid-template-columns: auto 1fr;
	}

	.knowledge-start-inner > .button {
		grid-column: 2;
		justify-self: start;
	}
}

@media (max-width: 680px) {
	.knowledge-hero {
		min-height: 620px;
	}

	.knowledge-hero-inner {
		padding-bottom: 70px;
		padding-top: 120px;
	}

	.knowledge-hero h1 {
		font-size: 58px;
		letter-spacing: -2px;
	}

	.knowledge-section {
		padding: 78px 0;
	}

	.knowledge-topic-grid,
	.knowledge-editorial-grid,
	.knowledge-books-grid,
	.knowledge-media-grid {
		grid-template-columns: 1fr;
	}

	.knowledge-section-heading.split {
		align-items: flex-start;
		flex-direction: column;
		gap: 22px;
	}

	.knowledge-start-inner {
		align-items: start;
		grid-template-columns: 1fr;
	}

	.knowledge-start-inner > .button {
		grid-column: auto;
	}
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at top right, rgba(200, 146, 46, 0.08), transparent 32rem),
		linear-gradient(115deg, #07101d 0%, var(--navy) 48%, #04070d 100%);
	color: var(--ivory);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	letter-spacing: 0;
}

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

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

button,
input,
textarea {
	font: inherit;
}

::selection {
	background: var(--gold);
	color: #111;
}

.container {
	margin: 0 auto;
	max-width: var(--container);
	padding: 0 24px;
	width: 100%;
}

.container.narrow {
	max-width: 820px;
}

.skip-link,
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute;
	width: 1px;
}

.skip-link:focus {
	background: var(--gold);
	clip: auto;
	color: #111;
	height: auto;
	left: 16px;
	padding: 10px 14px;
	top: 16px;
	width: auto;
	z-index: 999;
}

.site-header {
	background: rgba(4, 10, 18, 0.76);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid transparent;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	transition: background 180ms ease, border-color 180ms ease;
	z-index: 50;
}

.site-header.is-scrolled {
	background: rgba(4, 10, 18, 0.94);
	border-color: var(--line);
}

.header-inner {
	align-items: center;
	display: flex;
	gap: 24px;
	height: 58px;
	justify-content: space-between;
}

.brand {
	align-items: center;
	display: inline-flex;
	flex: 0 0 auto;
	gap: 10px;
	min-width: max-content;
	white-space: nowrap;
}

.brand-image {
	height: 38px;
	object-fit: contain;
	width: auto;
}

.brand-monogram {
	height: 38px;
	object-fit: contain;
	width: 38px;
}

.brand-mark {
	color: var(--gold);
	display: inline-block;
	font-family: var(--font-logo);
	font-size: 40px;
	font-weight: 700;
	letter-spacing: -1px;
	line-height: 1;
}

.brand-name {
	color: var(--ivory);
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.custom-logo {
	display: block;
	max-height: 34px;
	max-width: 46px;
	object-fit: contain;
	width: auto;
}

.language-switcher {
	align-items: center;
	display: flex;
	font-family: var(--font-ui);
	font-size: 12px;
	font-weight: 700;
	gap: 7px;
	letter-spacing: 1px;
	margin-left: 20px;
}

.language-switcher a {
	color: var(--gray);
	text-decoration: none;
}

.language-switcher a[aria-current="page"],
.language-switcher a:hover,
.language-switcher a:focus {
	color: var(--gold);
}

.site-menu {
	align-items: center;
	display: flex;
	gap: 26px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-menu a {
	color: var(--ivory);
	font-size: 13px;
	font-family: var(--font-ui);
	font-weight: 700;
	letter-spacing: 1.6px;
	position: relative;
	text-transform: uppercase;
}

.site-menu a::after {
	background: var(--gold);
	bottom: -10px;
	content: "";
	height: 1px;
	left: 0;
	opacity: 0;
	position: absolute;
	transform: scaleX(0);
	transform-origin: left;
	transition: opacity 180ms ease, transform 180ms ease;
	width: 100%;
}

.site-menu a:hover,
.site-menu a:focus,
.site-menu .current-menu-item > a {
	color: var(--gold);
}

.site-menu a:hover::after,
.site-menu a:focus::after,
.site-menu .current-menu-item > a::after {
	opacity: 1;
	transform: scaleX(1);
}

.menu-toggle {
	background: transparent;
	border: 0;
	display: none;
	height: 42px;
	padding: 8px;
	width: 42px;
}

.menu-toggle span:not(.screen-reader-text) {
	background: var(--ivory);
	display: block;
	height: 2px;
	margin: 6px 0;
	width: 24px;
}

.hero {
	background:
		linear-gradient(90deg, rgba(4, 9, 16, 0.94) 0%, rgba(7, 15, 26, 0.82) 38%, rgba(5, 9, 16, 0.24) 72%, rgba(4, 8, 14, 0.72) 100%),
		var(--hero-image, linear-gradient(120deg, #0b1422, #111827));
	background-position: center;
	background-size: cover;
	border-bottom: 1px solid var(--line);
	min-height: 500px;
	padding: 112px 0 72px;
	position: relative;
}

.hero::before {
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(5, 10, 17, 0.48)),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 90px);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.hero-inner {
	position: relative;
	z-index: 1;
}

.hero-align-right .hero-inner {
	display: flex;
	justify-content: flex-end;
}

.hero-content {
	max-width: 470px;
}

.hero-kicker,
.eyebrow {
	color: var(--gold);
	font-size: 12px;
	font-family: var(--font-ui);
	font-weight: 700;
	letter-spacing: 2px;
	margin: 0 0 12px;
	text-transform: uppercase;
}

h1,
h2,
h3 {
	color: var(--ivory);
	font-family: var(--font-heading);
	font-weight: 700;
	line-height: 1.08;
	margin: 0;
}

.hero h1 {
	font-size: clamp(52px, 5.2vw, 68px);
	text-transform: uppercase;
}

.tagline {
	color: var(--gold);
	font-family: var(--font-ui);
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 2px;
	margin: 8px 0 18px;
	text-transform: uppercase;
}

.hero-text {
	color: var(--gray);
	font-size: 17px;
	line-height: 1.62;
	margin: 0;
	max-width: 410px;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.button {
	align-items: center;
	border: 1px solid var(--gold);
	border-radius: 3px;
	display: inline-flex;
	font-family: var(--font-ui);
	font-size: 14px;
	font-weight: 600;
	gap: 8px;
	justify-content: center;
	letter-spacing: 1.2px;
	min-height: 40px;
	padding: 10px 24px;
	text-transform: uppercase;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus {
	transform: translateY(-1px);
}

.button-gold {
	background: linear-gradient(135deg, var(--gold), #d9ad31);
	color: #111827;
}

.button-outline {
	background: rgba(2, 8, 16, 0.36);
	color: var(--ivory);
}

.section-band,
.section-block {
	border-bottom: 1px solid var(--line);
}

.section-band {
	background: rgba(3, 11, 20, 0.64);
}

.section-block {
	padding: 22px 0 26px;
}

.identity {
	padding: 0 0 24px;
}

.tab-list {
	border-bottom: 1px solid var(--line);
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-bottom: 22px;
}

.tab-button {
	background: transparent;
	border: 0;
	color: rgba(248, 246, 240, 0.62);
	cursor: pointer;
	font-family: var(--font-ui);
	font-size: 22px;
	font-weight: 800;
	letter-spacing: 1px;
	padding: 16px;
	position: relative;
	text-transform: uppercase;
}

.tab-button.is-active {
	color: var(--ivory);
}

.tab-button.is-active::after {
	background: var(--gold);
	bottom: -1px;
	content: "";
	height: 2px;
	left: 25%;
	position: absolute;
	width: 50%;
}

.identity-panels {
	display: grid;
	gap: 26px;
	grid-template-columns: repeat(2, 1fr);
}

.identity-card {
	align-items: center;
	display: flex;
	gap: 22px;
	padding: 0 14px;
}

.identity-card + .identity-card {
	border-left: 1px solid var(--line);
	padding-left: 42px;
}

.identity-icon {
	align-items: center;
	border: 1px solid var(--gold);
	border-radius: 50%;
	color: var(--gold);
	display: flex;
	flex: 0 0 72px;
	font-size: 34px;
	height: 72px;
	justify-content: center;
	width: 72px;
}

.identity-card h2,
.section-heading h2 {
	font-size: 22px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.identity-card h2 {
	color: var(--gold);
	font-family: var(--font-heading);
	font-size: 22px;
	margin-bottom: 5px;
}

.identity-card p {
	color: var(--gray);
	font-size: 16px;
	line-height: 1.55;
	margin: 0 0 8px;
}

.identity-card a,
.section-heading a {
	color: var(--gold);
	font-family: var(--font-ui);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.8px;
}

.section-heading {
	align-items: center;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin-bottom: 12px;
}

.section-heading h2 {
	position: relative;
}

.section-heading h2::after,
.contact-section h2::after {
	background: var(--gold);
	bottom: -9px;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	width: 38px;
}

.category-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 18px 0 14px;
}

.category-row a {
	border: 1px solid rgba(201, 162, 39, 0.34);
	border-radius: 999px;
	color: var(--gray);
	font-family: var(--font-ui);
	font-size: 14px;
	padding: 4px 10px;
}

.post-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, 1fr);
}

.post-card,
.book-card {
	background: rgba(5, 13, 24, 0.72);
	border: 1px solid rgba(203, 213, 225, 0.18);
	overflow: hidden;
}

.card-media {
	background: linear-gradient(135deg, rgba(201, 162, 39, 0.24), rgba(17, 24, 39, 0.8));
	display: block;
	height: 120px;
	overflow: hidden;
}

.card-media img {
	height: 100%;
	object-fit: cover;
	transition: transform 360ms ease;
	width: 100%;
}

.post-card:hover img {
	transform: scale(1.04);
}

.card-body {
	padding: 13px 16px 15px;
}

.card-meta {
	color: var(--gold);
	font-family: var(--font-ui);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.9px;
	margin: 0 0 7px;
	text-transform: uppercase;
}

.post-card h3 {
	font-size: 20px;
	line-height: 1.2;
	margin-bottom: 9px;
}

.date-line,
.book-card p {
	color: var(--muted);
	font-size: 14px;
	margin: 0;
}

.books-layout {
	display: block;
}

.book-grid {
	display: grid;
	gap: 0;
	grid-template-columns: repeat(4, 1fr);
}

.book-card {
	background: transparent;
	border: 0;
	border-left: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 0 26px 4px;
}

.book-card:last-child {
	border-right: 1px solid var(--line);
}

.book-cover {
	align-items: center;
	aspect-ratio: 2 / 3;
	background: transparent;
	display: flex;
	justify-content: center;
	margin: 0 auto 18px;
	max-width: 150px;
	overflow: hidden;
	padding: 0;
	text-align: center;
	width: 78%;
}

.placeholder-book .book-cover {
	background:
		linear-gradient(180deg, rgba(201, 162, 39, 0.2), rgba(4, 10, 18, 0.92)),
		linear-gradient(135deg, #1b2638, #07101d);
	padding: 18px;
}

.book-cover img {
	filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.48));
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.book-cover span {
	color: var(--gold);
	font-family: var(--font-heading);
	font-size: 20px;
	line-height: 1.1;
	text-transform: uppercase;
}

.book-card h3 {
	font-size: 20px;
	line-height: 1.2;
	padding: 0;
}

.book-card p {
	padding: 0;
}

.book-genre {
	color: var(--gold);
	font-family: var(--font-ui);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.8px;
	margin: 8px 0 0;
	text-transform: uppercase;
}

.book-description {
	color: var(--gray);
	font-size: 14px;
	line-height: 1.45;
	margin: 9px 0 0;
}

.book-actions {
	display: flex;
	flex-wrap: nowrap;
	gap: 10px;
	margin-top: auto;
	padding-top: 18px;
}

.book-button {
	align-items: center;
	border: 1px solid rgba(201, 162, 39, 0.72);
	border-radius: 3px;
	display: inline-flex;
	font-family: var(--font-ui);
	font-size: 11px;
	font-weight: 700;
	justify-content: center;
	letter-spacing: 1px;
	min-height: 30px;
	padding: 7px 14px;
	text-transform: uppercase;
	white-space: nowrap;
}

.book-button-primary {
	background: linear-gradient(135deg, var(--gold), #d7a831);
	color: #111827;
}

.book-button-secondary {
	background: rgba(4, 10, 18, 0.18);
	color: var(--ivory);
}

.music-section {
	background: linear-gradient(90deg, rgba(5, 13, 24, 0.98) 0%, rgba(5, 13, 24, 0.96) 52%, rgba(5, 13, 24, 0.86) 100%);
	overflow: hidden;
	padding-bottom: 14px;
	padding-top: 14px;
	position: relative;
}

.music-section::before {
	background-image: var(--music-bg, none);
	background-position: center right;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0;
	content: "";
	filter: saturate(0.78) contrast(1.06);
	opacity: 0.34;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	width: 50%;
}

.music-section::after {
	background:
		linear-gradient(90deg, rgba(5, 13, 24, 1) 0%, rgba(5, 13, 24, 0.98) 48%, rgba(5, 13, 24, 0.48) 75%, rgba(5, 13, 24, 0.76) 100%),
		linear-gradient(180deg, rgba(2, 11, 24, 0.2), rgba(2, 11, 24, 0.78));
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.music-section .container {
	position: relative;
	z-index: 1;
}

.music-layout {
	align-items: center;
	display: grid;
	gap: 36px;
	grid-template-columns: minmax(0, 560px) 1fr;
	min-height: 96px;
}

.spotify-embed iframe {
	border-radius: 8px;
	height: 96px;
	width: 100%;
}

.music-placeholder {
	background: linear-gradient(135deg, rgba(2, 11, 24, 0.96), rgba(5, 13, 24, 0.86));
	border: 1px solid var(--line);
	border-radius: 7px;
	min-height: 96px;
	padding: 18px 22px;
}

.music-placeholder strong,
.music-placeholder span,
.music-placeholder small {
	display: block;
}

.music-placeholder small {
	color: var(--muted);
	margin-top: 10px;
}

.music-links p {
	color: var(--gray);
	font-size: 16px;
	margin: 0 0 14px;
}

.platform-button {
	border: 1px solid rgba(201, 162, 39, 0.42);
	border-radius: 4px;
	display: inline-flex;
	font-family: var(--font-ui);
	font-size: 14px;
	margin: 0 8px 8px 0;
	padding: 8px 13px;
}

.platform-button.youtube {
	border-color: rgba(139, 30, 34, 0.7);
}

.gallery-strip {
	display: grid;
	gap: 9px;
	grid-template-columns: repeat(5, 1fr);
}

.gallery-item {
	margin: 0;
	overflow: hidden;
	position: relative;
}

.gallery-strip img,
.gallery-placeholder {
	aspect-ratio: 16 / 9;
	background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(203, 213, 225, 0.08));
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.gallery-item figcaption {
	background: linear-gradient(180deg, transparent, rgba(4, 10, 18, 0.86));
	bottom: 0;
	color: var(--ivory);
	font-family: var(--font-ui);
	font-size: 16px;
	font-weight: 700;
	left: 0;
	letter-spacing: 0.9px;
	padding: 28px 10px 8px;
	position: absolute;
	right: 0;
	text-transform: uppercase;
}

.contact-section {
	padding: 28px 0;
}

.contact-layout {
	align-items: center;
	display: grid;
	gap: 40px;
	grid-template-columns: 1fr 360px;
}

.contact-section h2 {
	font-size: 22px;
	position: relative;
	text-transform: uppercase;
}

.contact-items {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 28px;
}

.contact-items > div {
	border-right: 1px solid var(--line);
	min-height: 60px;
	padding-left: 54px;
	position: relative;
}

.contact-items > div:last-child {
	border-right: 0;
}

.contact-icon {
	align-items: center;
	border: 1px solid var(--gold);
	border-radius: 50%;
	color: var(--gold);
	display: flex;
	font-size: 18px;
	height: 34px;
	justify-content: center;
	left: 0;
	position: absolute;
	top: 6px;
	width: 34px;
}

.contact-items strong,
.contact-items a,
.contact-items span:not(.contact-icon) {
	display: block;
}

.contact-items strong {
	font-family: var(--font-ui);
	font-size: 16px;
}

.contact-items a,
.contact-items span:not(.contact-icon) {
	color: var(--gray);
	font-size: 16px;
}

.socials {
	display: flex !important;
	flex-wrap: wrap;
	gap: 8px;
}

.contact-form-wrap {
	text-align: right;
}

.pm-contact-form {
	display: grid;
	gap: 12px;
	text-align: left;
}

.pm-contact-form label span {
	color: var(--gray);
	display: block;
	font-size: 12px;
	margin-bottom: 4px;
}

.pm-contact-form input,
.pm-contact-form textarea {
	background: rgba(248, 246, 240, 0.06);
	border: 1px solid var(--line);
	border-radius: 4px;
	color: var(--ivory);
	padding: 10px 12px;
	width: 100%;
}

.site-footer {
	background: rgba(4, 10, 18, 0.82);
	border-top: 1px solid var(--line);
	padding: 18px 0;
}

.footer-inner {
	align-items: center;
	display: flex;
	gap: 28px;
	justify-content: space-between;
}

.site-footer p {
	color: var(--muted);
	font-size: 16px;
	margin: 0;
}

.footer-copy small {
	color: var(--muted);
	display: block;
	font-size: 12px;
	margin-top: 2px;
}

.footer-socials {
	align-items: center;
	display: flex;
	gap: 8px;
}

.footer-socials a {
	align-items: center;
	border: 1px solid rgba(200, 146, 46, 0.55);
	border-radius: 50%;
	color: var(--gold);
	display: inline-flex;
	font-family: var(--font-ui);
	font-size: 10px;
	font-weight: 700;
	height: 30px;
	justify-content: center;
	width: 30px;
}

.to-top {
	align-items: center;
	border: 1px solid var(--gold);
	border-radius: 50%;
	color: var(--gold);
	display: flex;
	height: 38px;
	justify-content: center;
	width: 38px;
}

.archive-hero,
.single-hero,
.book-single {
	background:
		radial-gradient(circle at right, rgba(201, 162, 39, 0.12), transparent 24rem),
		linear-gradient(135deg, #07101d, #111827);
	border-bottom: 1px solid var(--line);
	padding: 132px 0 58px;
}

.archive-hero h1,
.single-hero h1,
.book-single h1 {
	font-size: 88px;
}

.archive-hero p,
.single-hero p {
	color: var(--gray);
	max-width: 680px;
}

.archive-content {
	padding: 36px 0 64px;
}

.single-featured {
	margin-top: 34px;
}

.single-featured img {
	border: 1px solid var(--line);
	max-height: 520px;
	object-fit: cover;
	width: 100%;
}

.entry-content {
	color: var(--gray);
	font-size: 16px;
	padding-bottom: 64px;
	padding-top: 34px;
}

.entry-content h2,
.entry-content h3 {
	margin-top: 1.5em;
}

.entry-content a {
	color: var(--gold);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.entry-content blockquote {
	border-left: 2px solid var(--gold);
	color: var(--ivory);
	font-family: var(--font-heading);
	font-size: 24px;
	margin: 28px 0;
	padding-left: 22px;
}

.pagination-wrap {
	margin-top: 30px;
}

.nav-links {
	align-items: center;
	display: flex;
	gap: 10px;
}

.page-numbers {
	border: 1px solid var(--line);
	color: var(--gray);
	padding: 7px 12px;
}

.page-numbers.current {
	background: var(--gold);
	color: #111827;
}

.book-grid-archive {
	grid-template-columns: repeat(4, 1fr);
}

.book-single-layout {
	align-items: center;
	display: grid;
	gap: 48px;
	grid-template-columns: 320px 1fr;
}

.book-single-cover img {
	border: 1px solid rgba(201, 162, 39, 0.3);
	box-shadow: 0 26px 60px rgba(0, 0, 0, 0.36);
}

.book-author,
.lead {
	color: var(--gray);
}

.lead {
	font-size: 16px;
}

.about-page {
	background:
		radial-gradient(circle at 76% 14%, rgba(200, 146, 46, 0.09), transparent 24rem),
		linear-gradient(115deg, #06101d 0%, #020b18 58%, #03070d 100%);
}

.about-hero {
	background:
		linear-gradient(90deg, rgba(2, 11, 24, 0.98) 0%, rgba(2, 11, 24, 0.88) 43%, rgba(2, 11, 24, 0.28) 72%, rgba(2, 11, 24, 0.84) 100%),
		var(--about-hero, none);
	background-position: center right;
	background-repeat: no-repeat;
	background-size: cover;
	border-bottom: 1px solid rgba(200, 146, 46, 0.24);
	min-height: 470px;
	padding: 134px 0 78px;
}

.about-hero-copy {
	max-width: 620px;
}

.about-hero h1 {
	font-size: clamp(32px, 4vw, 58px);
	letter-spacing: 0;
	line-height: 1.02;
	margin: 8px 0 28px;
}

.about-hero-lines {
	border-top: 2px solid var(--gold);
	max-width: 520px;
	padding-top: 26px;
}

.about-hero-lines p {
	color: var(--ivory);
	font-family: var(--font-heading);
	font-size: 15px;
	line-height: 1.35;
	margin: 0 0 8px;
}

.about-story {
	padding: 36px 0 28px;
}

.about-story-grid {
	align-items: start;
	display: grid;
	gap: 56px;
	grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
}

.about-prose {
	color: var(--ivory);
	font-family: var(--font-heading);
	font-size: 15px;
	line-height: 1.55;
}

.about-prose p {
	margin: 0 0 24px;
	position: relative;
}

.about-prose p + p::before {
	background: var(--gold);
	content: "";
	display: block;
	height: 2px;
	margin: 0 0 18px;
	width: 36px;
}

.about-extra-content {
	color: var(--gray);
	font-family: var(--font-body);
	font-size: 16px;
	margin-top: 30px;
}

.about-portrait {
	margin: 0;
	position: sticky;
	top: 86px;
}

.about-portrait img {
	aspect-ratio: 4 / 5;
	border: 1px solid rgba(200, 146, 46, 0.22);
	height: auto;
	object-fit: cover;
	object-position: center top;
	width: 100%;
}

.about-manifesto {
	background:
		linear-gradient(90deg, rgba(9, 16, 27, 0.97), rgba(7, 14, 24, 0.78)),
		var(--about-quote-bg, radial-gradient(circle at 86% 20%, rgba(200, 146, 46, 0.1), transparent 20rem));
	background-position: center;
	background-size: cover;
	border-bottom: 1px solid var(--line);
	border-top: 1px solid var(--line);
	padding: 28px 0;
}

.about-manifesto-grid {
	align-items: center;
	display: grid;
	gap: 64px;
	grid-template-columns: 1.15fr 0.85fr;
}

.about-manifesto blockquote {
	border-left: 2px solid var(--gold);
	color: var(--ivory);
	font-family: var(--font-heading);
	font-size: clamp(25px, 3vw, 40px);
	line-height: 1.12;
	margin: 0;
	padding-left: 46px;
}

.about-manifesto p {
	color: var(--gold);
	font-family: var(--font-heading);
	font-size: clamp(22px, 2.2vw, 32px);
	font-style: italic;
	line-height: 1.16;
	margin: 0;
}

.about-personal {
	border-bottom: 1px solid rgba(200, 146, 46, 0.2);
	padding: 30px 0;
}

.about-personal-grid {
	align-items: stretch;
	display: grid;
	gap: 56px;
	grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
}

.about-study-image {
	background:
		linear-gradient(90deg, rgba(2, 11, 24, 0.24), rgba(2, 11, 24, 0.08)),
		var(--about-study, none);
	background-position: center;
	background-size: cover;
	min-height: 230px;
}

.about-stats {
	border-bottom: 1px solid rgba(200, 146, 46, 0.22);
	padding: 20px 0;
}

.about-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.about-stats-grid div {
	border-left: 1px solid rgba(200, 146, 46, 0.36);
	text-align: center;
}

.about-stats-grid div:last-child {
	border-right: 1px solid rgba(200, 146, 46, 0.36);
}

.about-stats strong {
	color: var(--gold);
	display: block;
	font-family: var(--font-heading);
	font-size: 48px;
	font-weight: 500;
	line-height: 1;
}

.about-stats span {
	color: var(--ivory);
	display: block;
	font-family: var(--font-ui);
	font-size: 13px;
	letter-spacing: 3px;
	margin-top: 8px;
	text-transform: uppercase;
}

.about-cta {
	background:
		linear-gradient(90deg, rgba(2, 11, 24, 0.96) 0%, rgba(2, 11, 24, 0.82) 48%, rgba(2, 11, 24, 0.36) 100%),
		var(--about-writing, none);
	background-position: center right;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 28px 0 42px;
}

.about-cta-copy {
	max-width: 560px;
}

.about-cta h2 {
	font-size: clamp(20px, 1.5vw, 22px);
	line-height: 1.08;
	margin: 0 0 8px;
}

.about-cta em {
	color: var(--gold);
	font-style: italic;
}

.about-cta p {
	color: var(--gray);
	font-family: var(--font-heading);
	font-size: 18px;
	margin: 0 0 16px;
}

.blog-hero {
	background:
		linear-gradient(90deg, rgba(2, 11, 24, 0.98) 0%, rgba(2, 11, 24, 0.9) 43%, rgba(2, 11, 24, 0.35) 76%, rgba(2, 11, 24, 0.82) 100%),
		var(--blog-hero, none);
	background-position: center right;
	background-repeat: no-repeat;
	background-size: cover;
	border-bottom: 1px solid rgba(200, 146, 46, 0.28);
	min-height: 485px;
	padding: 122px 0 76px;
}

.blog-hero-copy {
	max-width: 520px;
}

.blog-hero h1 {
	font-size: clamp(42px, 5vw, 70px);
	line-height: 1.05;
	margin: 8px 0 24px;
}

.blog-hero-line {
	background: var(--gold);
	height: 2px;
	margin-bottom: 24px;
	width: 58px;
}

.blog-hero p:not(.eyebrow) {
	color: var(--ivory);
	font-family: var(--font-heading);
	font-size: 18px;
	line-height: 1.55;
	margin: 0;
}

.blog-archive-section {
	padding: 30px 0 54px;
}

.blog-archive-layout {
	align-items: start;
	display: grid;
	gap: 58px;
	grid-template-columns: minmax(0, 1fr) 320px;
}

.blog-filter-row {
	margin-bottom: 26px;
}

.blog-filter-row a {
	color: var(--gold);
	font-family: var(--font-heading);
	font-size: 18px;
}

.blog-list {
	display: grid;
	gap: 0;
}

.blog-list-item {
	border-bottom: 1px solid var(--line);
	display: grid;
	gap: 30px;
	grid-template-columns: 320px minmax(0, 1fr);
	padding: 0 0 24px;
}

.blog-list-item + .blog-list-item {
	padding-top: 24px;
}

.blog-list-media {
	background: rgba(200, 146, 46, 0.08);
	border: 1px solid rgba(200, 146, 46, 0.28);
	display: block;
	overflow: hidden;
}

.blog-list-media img {
	aspect-ratio: 16 / 9;
	height: 100%;
	object-fit: cover;
	transition: transform 360ms ease;
	width: 100%;
}

.blog-list-item:hover .blog-list-media img {
	transform: scale(1.035);
}

.blog-list-body h2 {
	font-size: 24px;
	line-height: 1.15;
	margin: 6px 0 10px;
}

.blog-excerpt {
	color: var(--gray);
	font-size: 15px;
	line-height: 1.55;
	margin: 0 0 14px;
}

.blog-item-footer {
	align-items: center;
	display: flex;
	gap: 18px;
	justify-content: space-between;
}

.blog-item-footer a,
.blog-sidebar-card a {
	color: var(--gold);
	font-family: var(--font-ui);
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
}

.blog-pagination {
	margin-top: 24px;
}

.blog-pagination .nav-links {
	display: flex;
	gap: 18px;
}

.blog-pagination .page-numbers {
	align-items: center;
	color: var(--gold);
	display: inline-flex;
	font-family: var(--font-ui);
	font-size: 14px;
	height: 36px;
	justify-content: center;
	min-width: 36px;
}

.blog-pagination .current {
	border: 1px solid rgba(200, 146, 46, 0.58);
	color: var(--ivory);
}

.blog-sidebar {
	display: grid;
	gap: 34px;
	position: sticky;
	top: 88px;
}

.blog-search {
	border: 1px solid rgba(200, 146, 46, 0.48);
	display: grid;
	grid-template-columns: 1fr 42px;
	min-height: 42px;
}

.blog-search input,
.newsletter-card input {
	background: rgba(2, 11, 24, 0.5);
	border: 0;
	color: var(--ivory);
	font-size: 14px;
	outline: 0;
	padding: 0 14px;
	width: 100%;
}

.blog-search button {
	background: transparent;
	border: 0;
	color: var(--ivory);
	cursor: pointer;
	font-size: 18px;
}

.blog-sidebar-block h2,
.blog-sidebar-card h2 {
	color: var(--gold);
	font-family: var(--font-ui);
	font-size: 15px;
	letter-spacing: 1.6px;
	margin: 0 0 18px;
	text-transform: uppercase;
}

.blog-sidebar-block h2::after {
	background: rgba(200, 146, 46, 0.56);
	content: "";
	display: block;
	height: 1px;
	margin-top: 14px;
	width: 100%;
}

.blog-category-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.blog-category-list li {
	align-items: center;
	display: flex;
	gap: 18px;
	justify-content: space-between;
	margin: 0 0 13px;
}

.blog-category-list a {
	color: var(--ivory);
	font-family: var(--font-heading);
	font-size: 18px;
}

.blog-category-list span {
	color: var(--gray);
	font-size: 14px;
}

.blog-sidebar-card {
	background: rgba(3, 11, 20, 0.54);
	border: 1px solid rgba(200, 146, 46, 0.36);
	padding: 30px 30px 28px;
}

.quote-mark {
	color: var(--gold);
	font-family: var(--font-heading);
	font-size: 62px;
	line-height: 0.7;
	margin: 12px 0 12px;
}

.blog-sidebar-card h3 {
	font-size: 22px;
	line-height: 1.12;
	margin: 0 0 14px;
}

.blog-sidebar-card p {
	color: var(--gray);
	font-size: 15px;
	line-height: 1.55;
	margin: 0 0 18px;
}

.newsletter-icon {
	color: var(--gold);
	font-size: 30px;
	margin-bottom: 14px;
}

.newsletter-card form {
	display: grid;
	gap: 14px;
}

.newsletter-card input {
	border: 1px solid rgba(200, 146, 46, 0.36);
	min-height: 42px;
}

.newsletter-card button {
	background: linear-gradient(135deg, var(--gold), #d7a831);
	border: 0;
	color: #111827;
	cursor: pointer;
	font-family: var(--font-ui);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 1.2px;
	min-height: 44px;
	text-transform: uppercase;
}

.post-single-page {
	background:
		radial-gradient(circle at 70% 10%, rgba(200, 146, 46, 0.07), transparent 24rem),
		linear-gradient(115deg, #06101d 0%, #020b18 58%, #03070d 100%);
	padding: 112px 0 34px;
}

.post-single-layout {
	align-items: start;
	display: grid;
	gap: 58px;
	grid-template-columns: minmax(0, 1fr) 330px;
}

.post-single-main {
	min-width: 0;
}

.post-back-link {
	color: var(--gold);
	display: inline-block;
	font-family: var(--font-ui);
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 28px;
}

.post-single-header {
	margin-bottom: 24px;
	max-width: 720px;
}

.post-single-header h1 {
	font-size: clamp(42px, 4.8vw, 62px);
	letter-spacing: 0;
	line-height: 1.08;
	margin: 10px 0 18px;
}

.post-single-subtitle {
	color: var(--ivory);
	font-family: var(--font-heading);
	font-size: 18px;
	line-height: 1.45;
	margin: 0 0 18px;
	max-width: 630px;
}

.post-meta-row {
	align-items: center;
	color: var(--muted);
	display: flex;
	flex-wrap: wrap;
	font-size: 13px;
	gap: 13px;
}

.post-meta-row span + span::before,
.post-meta-row a::before {
	color: rgba(200, 146, 46, 0.65);
	content: "·";
	margin-right: 13px;
}

.post-meta-row a {
	color: var(--gold);
	font-family: var(--font-ui);
	font-weight: 700;
}

.post-featured-image {
	border: 1px solid rgba(200, 146, 46, 0.28);
	margin: 0 0 26px;
	overflow: hidden;
}

.post-featured-image img {
	aspect-ratio: 16 / 9;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.post-entry {
	color: var(--ivory);
	font-family: var(--font-heading);
	font-size: 16px;
	line-height: 1.72;
	max-width: 730px;
}

.post-entry p {
	margin: 0 0 20px;
}

.post-anchor {
	display: block;
	scroll-margin-top: 90px;
}

.post-entry > p:first-of-type::first-letter {
	color: var(--gold);
	float: left;
	font-size: 68px;
	line-height: 0.78;
	margin: 9px 9px 0 0;
}

.post-entry h2 {
	color: var(--ivory);
	font-size: 26px;
	line-height: 1.2;
	margin: 34px 0 14px;
}

.post-entry blockquote {
	border-left: 2px solid var(--gold);
	color: var(--ivory);
	font-size: 25px;
	font-style: italic;
	line-height: 1.32;
	margin: 30px 0;
	padding: 4px 0 4px 24px;
}

.post-entry blockquote p {
	margin: 0;
}

.post-author-box {
	align-items: center;
	border-bottom: 1px solid var(--line);
	border-top: 1px solid var(--line);
	display: grid;
	gap: 24px;
	grid-template-columns: 96px minmax(0, 1fr);
	margin: 42px 0 0;
	max-width: 730px;
	padding: 24px 0;
}

.post-author-box img {
	aspect-ratio: 1;
	border: 1px solid rgba(200, 146, 46, 0.32);
	border-radius: 50%;
	height: 96px;
	object-fit: cover;
	width: 96px;
}

.post-author-box p {
	color: var(--ivory);
	font-family: var(--font-heading);
	font-size: 16px;
	margin: 0 0 7px;
}

.post-author-box strong {
	color: var(--gold);
	font-family: var(--font-ui);
	font-size: 13px;
	text-transform: none;
}

.post-author-box span {
	color: var(--gray);
	display: block;
	font-size: 14px;
	line-height: 1.55;
	margin-bottom: 8px;
}

.post-author-box a,
.related-all-link {
	color: var(--gold);
	font-family: var(--font-ui);
	font-size: 13px;
	font-weight: 700;
}

.post-adjacent-nav {
	border-bottom: 1px solid var(--line);
	display: grid;
	gap: 24px;
	grid-template-columns: 1fr 1fr;
	margin: 0 0 22px;
	max-width: 730px;
	padding: 22px 0;
}

.post-adjacent-nav div:last-child {
	text-align: right;
}

.post-adjacent-nav span {
	color: var(--muted);
	display: block;
	font-size: 13px;
	margin-bottom: 5px;
}

.post-adjacent-nav a {
	color: var(--ivory);
	font-family: var(--font-heading);
	font-size: 17px;
	line-height: 1.22;
}

.post-share {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	max-width: 730px;
}

.post-share span {
	color: var(--muted);
	font-size: 13px;
	margin-right: 8px;
}

.post-share a,
.post-share button {
	align-items: center;
	background: transparent;
	border: 1px solid var(--gold);
	border-radius: 50%;
	color: var(--gold);
	cursor: pointer;
	display: inline-flex;
	font-family: var(--font-ui);
	font-size: 13px;
	font-weight: 800;
	height: 30px;
	justify-content: center;
	padding: 0;
	width: 30px;
}

.post-share button.is-copied {
	background: var(--gold);
	color: #111827;
}

.post-sidebar {
	display: grid;
	gap: 30px;
	position: sticky;
	top: 90px;
}

.single-sidebar-card {
	background: rgba(3, 11, 20, 0.54);
	border: 1px solid rgba(200, 146, 46, 0.32);
	padding: 30px;
}

.single-sidebar-block h2,
.single-sidebar-card h2 {
	color: var(--ivory);
	font-family: var(--font-ui);
	font-size: 14px;
	letter-spacing: 1.4px;
	margin: 0 0 18px;
	text-transform: uppercase;
}

.single-sidebar-block h2::after,
.single-sidebar-card h2::after {
	background: rgba(200, 146, 46, 0.5);
	content: "";
	display: block;
	height: 1px;
	margin-top: 14px;
	width: 100%;
}

.author-card img {
	aspect-ratio: 16 / 9;
	border: 1px solid rgba(200, 146, 46, 0.22);
	margin-bottom: 18px;
	object-fit: cover;
	width: 100%;
}

.author-card h3 {
	font-size: 25px;
	line-height: 1.1;
	margin: 0 0 10px;
}

.author-card p,
.single-sidebar-card p {
	color: var(--gray);
	font-size: 14px;
	line-height: 1.62;
	margin: 0 0 18px;
}

.author-card a {
	color: var(--gold);
	font-family: var(--font-ui);
	font-size: 13px;
	font-weight: 700;
}

.single-toc {
	border-left: 2px solid var(--gold);
	list-style: none;
	margin: 0;
	padding: 10px 0 10px 22px;
}

.single-toc li {
	margin: 0 0 15px;
}

.single-toc li:last-child {
	margin-bottom: 0;
}

.single-toc a {
	color: var(--gray);
	font-size: 14px;
}

.related-posts {
	display: grid;
	gap: 18px;
	margin-bottom: 18px;
}

.related-post {
	display: grid;
	gap: 15px;
	grid-template-columns: 84px minmax(0, 1fr);
}

.related-post img {
	aspect-ratio: 1.18;
	border: 1px solid rgba(200, 146, 46, 0.2);
	height: 72px;
	object-fit: cover;
	width: 84px;
}

.related-post em {
	color: var(--gold);
	display: block;
	font-family: var(--font-ui);
	font-size: 11px;
	font-style: normal;
	font-weight: 800;
	letter-spacing: 0.8px;
	margin-bottom: 3px;
	text-transform: uppercase;
}

.related-post strong {
	color: var(--ivory);
	display: block;
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
}

.related-post small {
	color: var(--muted);
	display: block;
	font-size: 13px;
	margin-top: 4px;
}

.section-reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 520ms ease, transform 520ms ease;
}

.section-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

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

	* {
		transition-duration: 1ms !important;
	}
}

@media (max-width: 980px) {
	.menu-toggle {
		display: block;
	}

	.primary-nav {
		background: rgba(4, 10, 18, 0.98);
		border-bottom: 1px solid var(--line);
		display: none;
		left: 0;
		padding: 18px 24px 24px;
		position: absolute;
		right: 0;
		top: 58px;
	}

	.language-switcher {
		margin-left: auto;
		margin-right: 14px;
	}

	.primary-nav.is-open {
		display: block;
	}

	.site-menu {
		align-items: flex-start;
		flex-direction: column;
		gap: 16px;
	}

	.identity-panels,
	.books-layout,
	.music-layout,
	.contact-layout,
	.book-single-layout {
		grid-template-columns: 1fr;
	}

	.music-section::before {
		opacity: 0.2;
		width: 100%;
	}

	.music-layout {
		gap: 18px;
	}

	.identity-card + .identity-card {
		border-left: 0;
		border-top: 1px solid var(--line);
		padding-left: 14px;
		padding-top: 24px;
	}

	.post-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.book-grid,
	.book-grid-archive {
		grid-template-columns: repeat(2, 1fr);
	}

	.book-card:nth-child(odd) {
		border-left: 1px solid var(--line);
	}

	.book-card:nth-child(even) {
		border-right: 1px solid var(--line);
	}

	.contact-items {
		grid-template-columns: 1fr;
	}

	.contact-items > div {
		border-right: 0;
	}

	.gallery-strip {
		grid-template-columns: repeat(3, 1fr);
	}

	.about-hero {
		background-position: 70% center;
		min-height: 430px;
		padding: 112px 0 58px;
	}

	.about-hero h1 {
		font-size: 32px;
	}

	.about-hero-lines p,
	.about-prose {
		font-size: 15px;
	}

	.about-manifesto-grid,
	.about-story-grid,
	.about-personal-grid {
		gap: 28px;
		grid-template-columns: 1fr;
	}

	.about-portrait {
		max-width: 360px;
		position: static;
	}

	.about-manifesto blockquote {
		font-size: 25px;
		padding-left: 28px;
	}

	.about-manifesto p {
		font-size: 22px;
	}

	.about-stats-grid {
		grid-template-columns: repeat(2, 1fr);
		row-gap: 22px;
	}

	.blog-archive-layout {
		gap: 34px;
		grid-template-columns: 1fr;
	}

	.post-single-layout {
		gap: 36px;
		grid-template-columns: 1fr;
	}

	.blog-sidebar {
		position: static;
	}

	.post-sidebar {
		position: static;
	}

	.blog-list-item {
		grid-template-columns: 260px minmax(0, 1fr);
	}
}

@media (max-width: 640px) {
	.container {
		padding: 0 18px;
	}

	.header-inner {
		height: 58px;
	}

	.brand-name {
		font-size: 18px;
	}

	.brand-mark {
		font-size: 32px;
	}

	.primary-nav {
		top: 58px;
	}

	.hero {
		min-height: auto;
		padding: 104px 0 58px;
	}

	.hero h1 {
		font-size: 44px;
	}

	.tagline {
		font-size: 18px;
	}

	.hero-text {
		font-size: 16px;
	}

	.about-hero {
		background-position: 72% center;
		min-height: 500px;
		padding: 96px 0 42px;
	}

	.about-hero::after {
		background: linear-gradient(180deg, rgba(2, 11, 24, 0), rgba(2, 11, 24, 0.7));
	}

	.about-hero-copy {
		max-width: 100%;
	}

	.about-hero h1 {
		font-size: 32px;
	}

	.about-hero-lines {
		max-width: 320px;
	}

	.about-hero-lines p,
	.about-prose {
		font-size: 15px;
	}

	.about-story,
	.about-personal,
	.about-cta {
		padding: 26px 0;
	}

	.about-manifesto blockquote {
		font-size: 25px;
		padding-left: 20px;
	}

	.about-manifesto p {
		font-size: 22px;
	}

	.about-study-image {
		min-height: 180px;
	}

	.about-portrait {
		max-width: 260px;
	}

	.about-stats strong {
		font-size: 38px;
	}

	.about-stats span {
		font-size: 11px;
		letter-spacing: 2px;
	}

	.blog-hero {
		background-position: 66% center;
		min-height: 440px;
		padding: 96px 0 42px;
	}

	.blog-hero h1 {
		font-size: 34px;
	}

	.blog-hero p:not(.eyebrow) {
		font-size: 16px;
	}

	.blog-list-item {
		gap: 16px;
		grid-template-columns: 1fr;
	}

	.blog-list-media img {
		aspect-ratio: 16 / 9;
	}

	.blog-list-body h2 {
		font-size: 21px;
	}

	.post-single-page {
		padding-top: 96px;
	}

	.post-single-header h1 {
		font-size: 36px;
	}

	.post-single-subtitle {
		font-size: 16px;
	}

	.post-entry {
		font-size: 15px;
	}

	.post-entry > p:first-of-type::first-letter {
		font-size: 52px;
		margin-top: 8px;
	}

	.post-entry h2 {
		font-size: 22px;
	}

	.post-entry blockquote {
		font-size: 22px;
	}

	.post-author-box,
	.post-adjacent-nav {
		grid-template-columns: 1fr;
	}

	.post-author-box {
		text-align: left;
	}

	.post-adjacent-nav div:last-child {
		text-align: left;
	}

	.single-sidebar-card {
		padding: 24px 22px;
	}

	.blog-item-footer {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.blog-sidebar-card {
		padding: 24px 22px;
	}

	.button-row,
	.section-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.button {
		width: 100%;
	}

	.tab-list,
	.identity-panels,
	.post-grid,
	.book-grid,
	.book-grid-archive,
	.gallery-strip {
		grid-template-columns: 1fr;
	}

	.music-section {
		padding-bottom: 18px;
		padding-top: 18px;
	}

	.music-section::before {
		opacity: 0.12;
	}

	.book-card,
	.book-card:nth-child(odd),
	.book-card:nth-child(even),
	.book-card:last-child {
		border-left: 0;
		border-right: 0;
		border-top: 1px solid var(--line);
		padding: 24px 0;
	}

	.book-card:first-child {
		border-top: 0;
		padding-top: 0;
	}

	.card-media {
		height: 180px;
	}

	.gallery-strip img,
	.gallery-placeholder {
		aspect-ratio: 4 / 3;
	}

	.footer-inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.archive-hero,
	.single-hero,
	.book-single {
		padding: 112px 0 42px;
	}
}
