/*
Theme Name: Richard Weigand
Author: Custom
Description: Bespoke Classic Theme.
Version: 3.7
*/

/* ===============================================  
VARIABLES & RESET 
=============================================== */

:root {
	--c-navy: #0F2040;
	--c-navy-light: #1A2F55;
	--c-sienna: #C05621;
	--c-gold: #BFA15F;
	--c-alabaster: #F9F7F2;
	--c-charcoal: #1a202c;
	--c-stone: #d6d3d1;
	--c-stone-light: #f5f5f4;
	--c-white: #ffffff;
	--c-text: #444444;
	--c-text-light: #666666;
	--c-text-lighter: #888888;
	--c-text-mute: #cccccc;
	--c-text-dim: #999999;
	--c-text-dark-alt: #555555;
	--font-serif: 'Playfair Display', serif;
	--font-sans: 'Inter', sans-serif;
	--container: 80rem;
	--container-narrow: 60rem;
	--gutter: 1rem;
	--header-height: 5rem;
	--header-bg: rgba(249, 247, 242, 0.95);
	--transition: 0.3s ease;
	--transition-slow: 0.6s ease-out;
	--shadow-sm: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.05);
	--shadow-md: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.1);
	--hero-bg-alt: #F2ECE4;
	--hero-bg-alt-hover: #EBE5DC;
	--overlay: rgba(0, 0, 0, 0.3);
}
body .gform-theme.gform-theme--framework.gform_wrapper {
	--gf-ctrl-bg-color: #ffffff !important;
	--gf-ctrl-color: #2c3e50 !important;
	--gf-ctrl-border-color: var(--c-stone) !important;
	--gf-ctrl-border-radius: 0px !important;
	--gf-ctrl-border-width: 1px !important;
	--gf-ctrl-padding-y: 16px !important;
	--gf-ctrl-padding-x: 18px !important;
	--gf-ctrl-border-color-focus: var(--c-sienna) !important;
	--gf-ctrl-btn-bg-color-primary: var(--c-sienna) !important;
	--gf-ctrl-btn-color-primary: #ffffff !important;
	--gf-ctrl-btn-bg-color-hover-primary: #652505 !important;
	--gf-ctrl-btn-border-radius: 0px !important;
	--gf-label-color: var(--c-navy) !important;
	--gf-label-font-size: 16px !important;
	--gf-label-font-weight: 600 !important;
}
html {
	font-size: 100%;
	box-sizing: border-box;
	height: 100%;
}
*,
*::before,
*::after {
	box-sizing: inherit;
	margin: 0;
	padding: 0;
}
body {
	background-color: var(--c-alabaster);
	color: var(--c-charcoal);
	font-family: var(--font-sans);
	line-height: 1.6;
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	opacity: 1;
	transition: opacity var(--transition-slow);
}
main {
	flex: 1 0 auto;
	width: 100%;
	padding-top: var(--header-height);
}
.page-id-14 main {
	background: var(--c-navy)
}
/* ===============================================  
TYPOGRAPHY 
=============================================== */

h1,
h2,
h3,
h4,
h5 {
	font-family: var(--font-serif);
	font-weight: 700;
	line-height: 1.15;
	color: var(--c-navy);
}
h1 {
	font-size: clamp(2.5rem, 6vw + 1rem, 3rem);
	margin-bottom: 1.5rem;
}
h2 {
	font-size: clamp(1.5rem, 5vw + 1rem, 2.25rem);
	margin-bottom: 1.25rem;
}
h3 {
	font-size: clamp(1.25rem, 4vw + 0.5rem, 1.75rem);
	margin-bottom: 1rem;
}
h4 {
	font-size: clamp(1rem, 3vw + 0.25rem, 1.25rem);
	margin-bottom: 1rem;
}
h5 {
	font-size: clamp(1rem, 2vw + 0.1rem, 1rem);
	margin-bottom: 0.75rem;
}
p {
	margin-bottom: 1rem;
}
a {
	text-decoration: none;
	color: inherit;
	transition: var(--transition);
}
.entry-intro {
	color: #57534e;
	font-style: italic;
	font-weight: 300;
	line-height: 1.5em;
	font-family: var(--font-serif);
	font-size: clamp(1rem, 3vw, 1.5rem);
}
/* ===============================================  
SECTION COLORS
=============================================== */

section.beige-bg {
	background: var(--c-alabaster)
}
section.stone-bg {
	background: var(--c-stone-light)
}
section.navy-bg {
	background: var(--c-navy)
}
section.sienna-bg {
	background: var(--c-sienna)
}
section.gold-bg {
	background: var(--c-gold)
}
section.white-bg {
	background: var(--c-white)
}
section.dark-bg h1,
section.dark-bg h2,
section.dark-bg h3,
section.dark-bg h4,
section.dark-bg h5 {
	color: #fff
}
section.dark-bg p {
	color: #fff;
	opacity: 0.8
}
section.light-bg h1,
section.light-bg h2,
section.light-bg h3,
section.light-bg h4,
section.light-bg h5 {
	color: var(--c-navy)
}
section.light-bg p {
	color: var(--c-text-light)
}
section.light-bg blockquote p {
	color: var(--c-navy) !important
}
/* ===============================================  
UTILITIES & SCROLLBAR 
=============================================== */

img {
	max-width: 100%;
	height: auto;
	display: block;
}
ul {
	list-style: none;
}
.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
}
.text-center {
	text-align: center;
}
.text-navy {
	color: var(--c-navy);
}
.text-sienna {
	color: var(--c-sienna);
}
.text-gold {
	color: var(--c-gold);
}
.text-white {
	color: var(--c-white);
}
.font-bold {
	font-weight: bold;
}
i[class^="ri-"],
i[data-lucide] {
	vertical-align: middle;
	line-height: 1;
}
::-webkit-scrollbar {
	width: 0.75rem;
}
::-webkit-scrollbar-track {
	background: var(--c-alabaster);
}
::-webkit-scrollbar-thumb {
	background: var(--c-sienna);
	border-radius: 0.375rem;
	border: 0.125rem solid var(--c-alabaster);
}
::-webkit-scrollbar-thumb:hover {
	background: var(--c-navy);
}
*:focus-visible {
	outline: 0.1875rem solid var(--c-sienna);
	outline-offset: 0.125rem;
}
/* ===============================================  
BUTTONS 
=============================================== */

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-weight: 700;
	font-size: 0.85rem;
	padding-bottom: 0.25rem;
	border-bottom: 2px solid currentColor;
	cursor: pointer;
	color: var(--c-navy);
	border-color: rgba(15, 32, 64, 0.3);
}
.btn i {
	transition: transform var(--transition);
}
.btn:hover {
	color: var(--c-sienna);
	border-color: var(--c-sienna);
}
.btn:hover i {
	transform: translateX(6px);
}
.btn.btn-white {
	color: var(--c-white);
	border-color: rgba(255, 255, 255, 0.3);
}
.btn.btn-white:hover {
	color: var(--c-gold);
	border-color: var(--c-gold);
}
.btn.btn-navy {
	color: var(--c-navy);
	border-color: var(--c-navy);
}
.btn-solid {
	background: var(--c-navy);
	color: var(--c-white);
	padding: 1rem 2rem;
	border: none;
	border-radius: 0.125rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 700;
	font-size: 0.85rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	line-height: 1;
}
.btn-solid i {
	transition: transform var(--transition);
}
.btn-solid:hover {
	background: var(--c-sienna);
	color: var(--c-white);
}
.btn-solid:hover i {
	transform: translateX(6px);
}
.btn-solid.btn-clear {
	background: var(--c-white);
	color: var(--c-navy);
}
/* ===============================================  
HEADER & NAVIGATION 
=============================================== */

.site-header {
	position: fixed;
	top: 0;
	width: 100%;
	height: var(--header-height);
	background: var(--header-bg);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--c-stone);
	z-index: 9600;
	display: flex;
	align-items: center;
	transition: top var(--transition);
}
body.admin-bar .site-header {
	top: 32px;
}
@media (max-width: 782px) {
	body.admin-bar .site-header {
		top: 46px;
	}
}
.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}
.logo {
	display: flex;
	align-items: center;
	gap: 1rem;
	z-index: 99;
}
.logo-icon {
	width: 3rem;
	height: 3rem;
	background: var(--c-navy);
	color: var(--c-white);
	display: grid;
	place-items: center;
	font-family: var(--font-serif);
	font-size: 1.5rem;
	font-weight: bold;
	border-radius: 4px;
}
@media (max-width: 600px) {
	.logo-text {
		display: none;
	}
}
.logo-text h1 {
	font-size: 1.125rem;
	margin: 0;
	color: var(--c-navy);
	line-height: 1;
}
.logo-text span {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--c-gold);
	font-weight: 700;
	display: block;
	margin-top: 0.25rem;
}
.logo:hover .logo-icon {
	background: var(--c-sienna);
}
/* ===============================================  
VISIBILITY CONTROL
=============================================== */

.desktop-only {
	display: inline-flex;
}
#mobile-toggle {
	display: none;
}
#mobile-close {
	display: none;
}
.main-nav ul {
	display: flex;
	gap: 2.5rem;
}
.main-nav a {
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--c-charcoal);
}
.main-nav a:hover {
	color: var(--c-sienna);
}
#menu-item-110 {
	display: none;
}
/* ===============================================  
SLIDE-OUT MOBILE NAV 
=============================================== */

@media (max-width: 991px) {
	.desktop-only {
		display: none !important;
	}
	#menu-item-110 {
		display: block;
	}
	#mobile-toggle {
		display: block;
		background: transparent;
		border: none;
		color: var(--c-navy);
		font-size: 1.75rem;
		cursor: pointer;
	}
	.main-nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 20rem;
		height: 100vh;
		background: var(--c-navy);
		padding: 6rem 2.5rem;
		display: flex;
		flex-direction: column;
		z-index: 10000;
		box-shadow: -0.625rem 0 1.875rem rgba(0, 0, 0, 0.3);
		transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
	}
	.main-nav.is-open {
		right: 0;
	}
	.main-nav ul {
		flex-direction: column;
		gap: 1.5rem;
	}
	.main-nav a {
		color: var(--c-white);
		font-family: var(--font-serif);
		font-size: 1.5rem;
		text-transform: none;
		letter-spacing: normal;
	}
	.main-nav a:hover {
		color: var(--c-gold);
	}
	#mobile-close {
		display: block;
		position: absolute;
		top: 2rem;
		right: 2rem;
		background: transparent;
		border: none;
		color: var(--c-gold);
		font-size: 2rem;
		cursor: pointer;
	}
	.mobile-nav-contact {
		margin-top: auto;
		padding-top: 2rem;
		color: var(--c-gold) !important;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 0.1em;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		font-family: var(--font-sans) !important;
		font-size: 0.85rem !important;
	}
}
/* ===============================================  
OVERLAY BACKDROP
=============================================== */

.nav-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(15, 32, 64, 0.7);
	backdrop-filter: blur(4px);
	z-index: 9500;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
}
.nav-overlay.is-visible {
	opacity: 1;
	visibility: visible;
}
/* ===============================================  
HERO SECTION 
=============================================== */

.hero-section {
	min-height: calc(100vh - var(--header-height));
	background: var(--c-white);
}
.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	min-height: inherit;
}
.hero-grid p {
	text-wrap: balance;
}
.hero-col {
	padding: 4rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	overflow: hidden;
}
.hero-col-left {
	background: var(--c-navy);
	color: var(--c-white);
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-col-left:hover {
	background: var(--c-navy-light);
}
.hero-col-left h2 {
	color: #fff;
}
.hero-col-center {
	color: var(--c-white);
	text-align: center;
	justify-content: flex-end;
}
.hero-col-right {
	background: var(--hero-bg-alt);
	color: var(--c-navy);
	text-align: right;
}
.hero-col-right:hover {
	background: var(--hero-bg-alt-hover);
}
.hero-section h2, .hero-section h1 {
	font-size: clamp(2.5rem, 5vw + 1rem, 4rem);
	margin-bottom: 1.5rem;
	line-height: 1.1;
	font-family: var(--font-serif);
}
.hero-desc {
	font-size: 1.125rem;
	margin-bottom: 2.5rem;
	opacity: 0.9;
	max-width: 22rem;
}
.hero-desc.dark {
	color: var(--c-text);
}
.hero-bg-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.hero-overlay {
	position: absolute;
	inset: 0;
	background: var(--overlay);
	z-index: 1;
}
.hero-content-center {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.hero-content-center h1 {
	color: #fff;
}
/* ===============================================  
INTRO & PAGE HEADERS 
=============================================== */

.section-intro {
	background: var(--c-stone-light);
	border-bottom: 1px solid var(--c-stone);
	padding: 6rem 0;
}
.intro-title {
	font-size: clamp(2rem, 4vw, 2.5rem);
	color: var(--c-navy);
	margin-bottom: 1.5rem;
	font-family: var(--font-serif);
}
.intro-desc {
	font-size: 1.25rem;
	color: var(--c-text);
	max-width: 50rem;
	margin: 0 auto;
	line-height: 1.8;
}
.page-header {
	padding: clamp(2.5rem, 5vw + 1rem, 4rem) 0 clamp(2.5rem, 5vw + 1rem, 4rem);
	border-bottom: 1px solid var(--c-stone);
	background: var(--c-white);
	text-align: center;
}
.page-id-14 .page-header {
	background: transparent;
	border-bottom: 0 !important;
}
.page-header.left,
.page-header--left {
	text-align: left;
}
.page-header.padded-btm {
	padding-bottom: 2rem;
}
.page-header.dark {
	background: var(--c-navy);
	color: var(--c-white);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.page-header h1 {
	font-size: clamp(2.5rem, 5vw + 1rem, 3.5rem);
	margin-bottom: 1rem;
	color: var(--c-navy);
}
.page-header.dark h1 {
	color: var(--c-white);
}
.page-subtitle {
	color: #57534e;
	font-style: italic;
	font-weight: 300;
	line-height: 1.5em;
	font-family: var(--font-serif);
	font-size: clamp(1rem, 3vw, 1.25rem);
}
.page-header.left .page-subtitle,
.page-header--left .page-subtitle {
	margin: 0;
	text-align: left;
}
.page-header.dark p {
	color: var(--c-text-mute);
	text-align: left;
}
.page-header .hero-label {
	color: var(--c-sienna);
}
.page-header .page-introduction em {
	color: #57534e;
	font-style: italic;
	font-weight: 300;
	line-height: 1.5em;
	font-family: var(--font-serif);
	font-size: clamp(1rem, 3vw, 1.5rem);
}
.page-header.dark .page-introduction em {
	color: var(--c-white);
	opacity: 0.6;
}
/* ===============================================  
FEATURES & JOURNAL
=============================================== */

.section-features {
	background: var(--c-white);
	padding: 6rem 0;
	border-bottom: 1px solid var(--c-stone);
}
.section-features.alt-bg {
	background: var(--c-alabaster);
}
.section-features.stone-bg {
	background: var(--c-stone-light);
}
.section-features.padded {
	padding-top: 6rem;
	padding-bottom: 6rem;
}
.section-header-wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 3rem;
}
.section-header-wrap>div {
	flex: 1
}
.section-header-wrap h3 {
	font-size: clamp(2rem, 4vw, 2.5rem);
	margin-bottom: 0;
}
.section-header-wrap.centered {
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.section-header-wrap p {
	color: var(--c-text-light);
	margin-top: 1rem;
	font-size: 1.125rem;
}
.section-features p {
	text-wrap: balance;
}
.section-header-wrap p:last-of-type {
	margin-bottom: 0;
}
.section-desc.centered {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 4rem;
	text-align: center;
}
.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}
.feature-card {
	padding: 2.5rem;
	border: 2px solid var(--c-stone);
	text-align: center;
	transition: var(--transition);
	background: var(--c-white);
}
.feature-card:hover {
	border-color: var(--c-navy);
	background: #fafafa;
}
.feature-icon {
	width: 5rem;
	height: 5rem;
	background: rgba(15, 32, 64, 0.05);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem auto;
	color: var(--c-navy);
	font-size: 2.5rem;
}
.feature-card h4 {
	font-size: 1.5rem;
	color: var(--c-navy);
	margin-bottom: 1rem;
	font-family: var(--font-serif);
	font-weight: 700;
}
.feature-text {
	color: var(--c-text-light);
}
.feature-text p {
	text-wrap: balance;
	margin: 0
}
.feature-card.article-card {
	text-align: left;
	display: flex;
	flex-direction: column;
	padding: 2rem;
	cursor: pointer;
	align-items: flex-start
}
.article-meta-label {
	margin-bottom: 1rem;
	color: var(--c-text-lighter);
	font-weight: 700;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
.article-card-title {
	font-size: 1.5rem;
	color: var(--c-navy);
	margin-bottom: 1rem;
	line-height: 1.3;
}
.article-card-excerpt {
	color: var(--c-text-light);
	flex-grow: 1;
	margin-bottom: 1.5rem;
	line-height: 1.6;
	font-size: 1rem;
}
.empty-state {
	text-align: center;
	grid-column: 1/-1;
	color: var(--c-text-light);
	font-style: italic;
}
.empty-state-block {
	grid-column: 1/-1;
	text-align: center;
	padding: 4rem 0;
}
.empty-state-dark {
	grid-column: 1/-1;
	text-align: center;
	color: var(--c-white);
	padding: 4rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
}
/* ===============================================  
MANUSCRIPTS & PROCESS
=============================================== */

.section-manuscripts {
	background: var(--c-navy);
	color: var(--c-white);
	padding: 6rem 0;
}
.section-manuscripts h2,
.section-manuscripts h3 {
	color: var(--c-white);
}
.manuscripts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}
.manuscript-card {
	background: var(--c-navy-light);
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 2.5rem;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: var(--transition);
}
.manuscript-card:hover {
	border-color: rgba(191, 161, 95, 0.5);
	transform: translateY(-0.3rem);
}
.m-meta {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1.5rem;
	font-size: 0.75rem;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--c-gold);
}
.m-tag {
	background: rgba(255, 255, 255, 0.1);
	padding: 0.125rem 0.5rem;
	color: var(--c-white);
}
.m-title {
	font-size: 1.75rem;
	margin-bottom: 1rem;
	color: var(--c-white);
	font-family: var(--font-serif);
}
.m-excerpt {
	color: var(--c-text-mute);
	font-size: 1rem;
	margin-bottom: 2rem;
	flex-grow: 1;
}
.m-link {
	margin-top: auto;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.75rem;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--c-text-dim);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.m-link i {
	transition: transform var(--transition);
}
.meta-category-link {
	color: inherit;
	text-decoration: none;
	transition: var(--transition);
}
.meta-category-link:hover {
	color: var(--c-gold);
	text-decoration: underline;
}
.manuscript-card:hover .m-link {
	color: var(--c-white);
}
.manuscript-card:hover .m-link i {
	transform: translateX(6px);
}
.process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin-top: 5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 3rem;
}
.process-step {
	position: relative;
}
.process-number {
	font-size: 4rem;
	font-family: var(--font-serif);
	font-weight: bold;
	color: rgba(255, 255, 255, 0.05);
	position: absolute;
	top: -1.5rem;
	left: -0.5rem;
	z-index: 0;
}
.process-content {
	position: relative;
	z-index: 1;
}
.process-title {
	color: var(--c-gold);
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-weight: 700;
	margin-bottom: 0.5rem;
}
.process-desc {
	color: var(--c-text-dim);
	font-size: 0.9rem;
}
.manuscripts-filter-form {
	margin-bottom: 4rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	align-items: center;
}
.reset-link {
	color: var(--c-text-mute);
	font-size: 0.85rem;
	text-decoration: underline;
	margin-left: 0.5rem;
}
/* ===============================================  
BOOKS 
=============================================== */

.book-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 2px solid transparent;
	padding: 1.5rem;
	transition: var(--transition);
	background: #fff;
}
.book-card:hover {
	border-color: var(--c-sienna);
	background: var(--c-white);
	box-shadow: var(--shadow-sm);
}
.book-cover {
	background: #eee;
	aspect-ratio: 2/3;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	border: 1px solid #ddd;
	overflow: hidden;
}
.book-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.book-no-cover {
	color: #aaa;
	font-size: 0.9rem;
	text-transform: uppercase;
}
.book-title {
	font-size: 1.5rem;
	color: var(--c-navy);
	margin-bottom: 0.5rem;
	font-family: var(--font-serif);
}
.book-desc {
	color: var(--c-text-dark-alt);
	font-size: 0.95rem;
	margin-bottom: 1.5rem;
	flex-grow: 1;
}
.book-link {
	margin-top: auto;
	font-size: 0.85rem;
	font-weight: bold;
	text-transform: uppercase;
	color: var(--c-navy);
	border-bottom: 2px solid var(--c-navy);
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding-bottom: 0.125rem;
}
.book-link i {
	margin-left: 0.3125rem;
	transition: transform var(--transition);
}
.book-card:hover .book-link {
	color: var(--c-sienna);
	border-color: var(--c-sienna);
}
.book-card:hover .book-link i {
	transform: translateX(6px);
}
/* ===============================================  
SINGLE POST & PAGE CONTENT 
=============================================== */

.container-narrow {
	max-width: var(--container-narrow);
	margin: 0 auto;
}
.section-pad-large {
	padding-top: 4rem;
	padding-bottom: 8rem;
}
.single-post-content-container {
	display: grid;
	grid-template-columns: 360px 2fr;
	gap: 4rem;
}
#ez-toc-container {
	align-self: flex-start;
	padding: 24px !important;
}
#ez-toc-container .ez-toc-title {
	font-family: var(--font-serif) !important;
	font-size: 1.25rem !important;
	color: var(--c-navy) !important;
	line-height: 1.1 !important;
	font-weight: 700 !important;
}
#ez-toc-container .ez-toc-title-container {
	margin-bottom: 1rem !important;
}
#ez-toc-container .ez-toc-counter nav ul li a::before {
	color: #C05621 !important;
}
.ez-toc-counter nav ul li a::before {
	margin-right: .5em !important;
}
.entry-content #ez-toc-container {
	display: none !important;
}
@media (min-width: 64rem) {
	.sticky-toc {
		align-self: flex-start;
		position: -webkit-sticky;
		position: sticky;
		top: 8rem;
		height: fit-content;
	}
}
/* ===============================================  
OFFSET WORDPRESS BAR
=============================================== */

body.admin-bar .sticky-toc {
	top: calc(8rem + 32px);
}
.post-header {
	margin-bottom: 3rem;
	border-bottom: 1px solid var(--c-stone);
	padding-bottom: 2rem;
}
.post-meta {
	margin-bottom: 1rem;
	color: var(--c-text-lighter);
	font-weight: 700;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
.post-meta-sep {
	margin: 0 0.5rem;
	color: var(--c-gold);
}
.entry-title {
	font-size: clamp(2rem, 4vw, 4rem);
	color: var(--c-navy);
	line-height: 1.1;
	margin-bottom: 1.5rem;
}
.entry-content p {
	margin-bottom: 1.5rem;
	line-height: 1.8;
	color: var(--c-text);
	font-size: 1.05rem;
}
.entry-content ul {
	list-style: none;
	padding-left: 1.5rem;
	margin: 0.5rem 0 1.6rem;
}
.entry-content li {
	position: relative;
	padding: 2px 0;
}
.entry-content ul li::before {
	content: '';
	position: absolute;
	left: -1rem;
	top: 14px;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	background-color: var(--c-sienna);
	border-radius: 50%;
}
.post-footer {
	margin-top: 4rem;
	padding-top: 2rem;
	border-top: 1px solid var(--c-stone);
	display: flex;
	justify-content: space-between;
}
.nav-link-prev,
.nav-link-next {
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.85rem;
	color: var(--c-navy);
	display: inline-block;
}
.nav-link-prev:hover,
.nav-link-next:hover {
	color: var(--c-sienna);
}
.sticky-sidebar {
	position: sticky;
	top: 7.5rem;
}
body.admin-bar .sticky-sidebar {

	top: calc(7.5rem + 32px);
}
.widget-title {
	color: var(--c-navy);
	font-size: 1.25rem;
	margin-bottom: 1rem;
	font-family: var(--font-serif);
	font-weight: 700;
}
.widget-text {
	color: var(--c-text-light);
}
.widget-link {
	color: var(--c-sienna);
	font-weight: bold;
}
.back-link {
	font-size: 0.75rem;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--c-text-dim);
	display: flex;
	align-items: center;
	margin-bottom: 2rem;
	gap: 0.5rem;
}
/* ===============================================  
QUOTES & CLOSING REFLECTION 
=============================================== */

.section-pad-quote {
	padding: 8rem 0;
	border-top: 1px solid var(--c-stone);
	background: var(--c-stone-light);
}
.quote-icon {
	color: var(--c-gold);
	margin-bottom: 2rem;
	opacity: 0.8;
	font-size: 3rem;
}
.section-pad-quote blockquote {
	font-family: var(--font-serif);
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	line-height: 1.3;
	color: var(--c-navy);
	margin-bottom: 2rem;
}
.section-pad-quote strong {
	font-style: normal;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--c-text-light);
}
.closing-reflection {
	background-color: #fff;
	border-left: 5px solid var(--c-navy);
	padding: 3rem;
	margin: 4rem 0;
	position: relative;
	clear: both;
}
.closing-reflection h2 {
	display: block;
	font-family: var(--font-sans);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--c-gold);
	margin-bottom: 1.5rem;
}
.closing-reflection p {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 1.25rem;
	color: var(--c-text);
	line-height: 1.8;
}
.closing-reflection p:last-child {
	margin-bottom: 0;
}
/* ===============================================  
MANUSCRIPT DETAILS & CTAS 
=============================================== */

.manuscript-hero {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 4rem;
	align-items: start;
}
.series-label {
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--c-gold);
	display: block;
	margin-bottom: 1rem;
}
.entry-subtitle {
	font-size: 1.5rem;
	color: var(--c-text-light);
	font-family: var(--font-serif);
	font-style: italic;
	text-wrap: balance;
	line-height: 1.4;
}
.manuscript-cta {
	background: var(--c-navy);
	color: var(--c-white);
	padding: 2.5rem;
	box-shadow: var(--shadow-lg);
}
.cta-title {
	color: var(--c-white);
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
	font-family: var(--font-sans);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 700;
}
.cta-desc {
	color: var(--c-text-mute);
	font-size: 0.95rem;
	margin-bottom: 2rem;
	line-height: 1.6;
}
.btn-inquire {
	background: var(--c-gold);
	color: var(--c-navy);
	display: block;
	text-align: center;
	padding: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.85rem;
	border: none;
	width: 100%;
}
.btn-inquire:hover {
	background: var(--c-white);
	cursor: pointer;
}
.manuscript-body {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 5rem;
}
.section-label,
.meta-label,
.sidebar-item h4 {
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--c-navy);
	margin-bottom: 1rem;
	border-bottom: 2px solid var(--c-stone);
	padding-bottom: 0.5rem;
	display: block;
}
.series-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.series-label a {
	color: var(--c-gold);
	text-decoration: none;
	transition: opacity 0.3s ease;
}
.series-label a:hover {
	opacity: 0.7;
	text-decoration: underline;
}
.meta-sep {
	color: rgba(255, 255, 255, 0.3);
	/* Subdued dot color */
}
.sidebar-item {
	margin-bottom: 3rem;
}
.sidebar-item ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.sidebar-item ul li {
	position: relative;
	padding-left: 1.75rem;
	margin-bottom: 0.75rem;
	line-height: 1.4;
}
.sidebar-item ul li::before {
	content: '\2713';
	position: absolute;
	left: 0;
	top: -2px;
	color: var(--c-gold);
	font-weight: 900;
	font-size: 1.1rem;
}
.meta-value {
	font-size: 1.125rem;
	line-height: 1.6;
	color: var(--c-text);
}
.rights-list {
	list-style: disc;
	padding-left: 1.25rem;
	color: var(--c-text-dark-alt);
	font-size: 1rem;
}
.rights-list li {
	margin-bottom: 0.75rem;
}
/* =============================================== 
AUTHOR BLOCK 
=============================================== */

.author-block {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 2.5rem;
	background: var(--c-white);
	border: 1px solid var(--c-stone);
	padding: 3rem;
	margin: 4rem 0;
	align-items: center;
}
.author-block img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--c-stone-light);
}
.author-content {
	display: flex;
	flex-direction: column;
}
.author-content h4 {
	margin-bottom: 0.5rem;
	font-size: clamp(1.5rem, 3vw, 1.75rem);
	color: var(--c-navy);
}
.author-title {
	font-family: var(--font-sans);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--c-gold);
	margin-bottom: 0.5rem;
	display: block;
}
.author-content p {
	font-size: 1rem;
	color: var(--c-text-light);
	line-height: 1.6;
	margin-bottom: 0;
}
.author-content h4 a {
	color: var(--c-navy);
	text-decoration: none;
}
.author-content h4 a:hover {
	color: var(--c-sienna);
}
.author-link {
	display: inline-block;
	margin-top: 1rem;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--c-navy);
	border-bottom: 2px solid var(--c-gold);
	padding-bottom: 2px;
}
.author-link i {
	transition: transform var(--transition);
	display: inline-block;
}
.author-link:hover {
	color: var(--c-sienna);
	border-color: var(--c-sienna);
}
.author-link:hover i {
	transform: translateX(6px);
}
.author-image a {
	display: block;
	transition: transform 0.3s ease;
}
.author-image a:hover {
	transform: scale(1.05);
}
/* ===============================================  
BOOK SINGLE 
=============================================== */

.book-grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 4rem;
	margin-top: 4rem;
	align-items: start;
}
.book-single-header {
	margin-top: 0;
}
.book-single-cover {
	width: 100%;
	height: auto;
	border: 1px solid #ddd;
	box-shadow: var(--shadow-lg);
}
.book-buy-btn {
	display: flex;
	text-align: center;
	margin-top: 2rem;
	width: 100%;
}
.book-series-tag {
	color: var(--c-sienna);
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.9rem;
}
.book-single-title {
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--c-navy);
	margin-top: 0.5rem;
	margin-bottom: 2rem;
}
/* ===============================================  
ABOUT & CONTACT 
=============================================== */

.about-grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 4rem;
	margin-top: 4rem;
	align-items: start;
}
.about-img {
	width: 100%;
	height: auto;
	border: 0.25rem solid var(--c-white);
	box-shadow: var(--shadow-lg);
}
.about-prose {
	font-size: 1.125rem;
	color: var(--c-text);
	line-height: 1.8;
}
.core-themes {
	background: var(--c-stone-light);
	padding: 3rem;
	border: 2px solid var(--c-stone);
	margin-top: 3rem;
}
.themes-header {
	font-family: var(--font-serif);
	font-size: 1.5rem;
	color: var(--c-navy);
	margin-bottom: 1.5rem;
}
.theme-item {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
	font-size: 1.1rem;
	align-items: center;
}
.contact-wrapper {
	max-width: 44rem;
	margin: 0 auto;
	background: var(--c-white);
	padding: 2rem;
	box-shadow: var(--shadow-lg);
	border-top: 0.5rem solid var(--c-sienna);
	margin-top: -3rem;
	margin-bottom: 4rem;
	position: relative;
	z-index: 10;
}
form select {
	background-color: var(--c-white);
	border: 2px solid var(--c-stone);
	color: var(--c-navy);
	padding: 0.75rem 2rem 0.75rem 1rem;
	font-family: var(--font-sans);
	font-size: 0.9rem;
	font-weight: 500;
	cursor: pointer;
	appearance: none;
	min-width: 12.5rem;
	border-radius: 2px;
}
.filter-bar {
	margin-bottom: 4rem;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 1rem;
	display: flex;
}
.filter-btn {
	padding: 0.75rem 2rem;
	border: 2px solid var(--c-stone);
	background: var(--c-white);
	font-weight: bold;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	color: var(--c-text-light);
	cursor: pointer;
}
.filter-btn.active,
.filter-btn:hover {
	background-color: var(--c-navy);
	color: var(--c-white);
	border-color: var(--c-navy);
}
.pagination {
	margin-top: 5rem;
	display: flex;
	justify-content: center;
}
.pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	border: 2px solid var(--c-stone);
	font-weight: 700;
	color: var(--c-navy);
	margin: 0 0.3125rem;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
	background: var(--c-navy);
	border-color: var(--c-navy);
	color: var(--c-white);
}
/* ===============================================  
TABS 
=============================================== */

.tab-container {
	overflow: hidden;
}
.tab-header {
	display: flex;
	border-bottom: 1px solid #e0e0e0;
}
.tab-button {
	flex: 1;
	padding: 15px;
	text-align: center;
	cursor: pointer;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border: none;
	transition: background-color 0.3s, color 0.3s;
}
.tab-button.active {
	background-color: #111e47;
	color: #ffffff;
}
.tab-button.inactive {
	background-color: #f8f8f8;
	color: #555;
}
.tab-content {
	padding: 30px;
}
.tab-pane {
	display: none;
}
.tab-pane.active {
	display: block;
}
.tab-pane p {
	line-height: 1.6;
	color: #333;
	margin: 0;
}
/* ===============================================  
TWO COLUMNS SECTION 
=============================================== */

.two-column-container {
	padding: clamp(2.5rem, 5vw + 1rem, 4rem) 0 clamp(2.5rem, 5vw + 1rem, 4rem);
}
.two-column-container .two-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

@media (max-width: 64rem) {
	.two-column-container .two-columns {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

/*
.two-column-container .two-column__left {
	
}
.two-column-container .two-column__right {
	
}
*/

.two-column-container img {
	width: 100%;
}
/* ===============================================  
RESPONSIVE QUERIES 
=============================================== */

@media (max-width: 64rem) {
	.hero-grid,
	.features-grid,
	.manuscripts-grid,
	.about-grid,
	.process-grid,
	.manuscript-hero,
	.manuscript-body,
	.footer-grid,
	.single-post-content-container,
	.book-grid,
	.two-columns {
		grid-template-columns: 1fr;
	}
	.two-columns {
		gap: 2rem;
	}
	.hero-col {
		padding: 3rem 2rem;
	}
	.contact-wrapper {
		padding: 2rem;
		margin-top: 2rem;
	}
	.section-header-wrap {
		flex-direction: column;
		align-items: flex-start;
		gap: 2rem;
	}
	.site-info-inner {
		flex-direction: column;
		text-align: center;
	}
}
@media (max-width: 48rem) {
	.author-block {
		grid-template-columns: 1fr;
		text-align: center;
		padding: 2rem;
		gap: 1.5rem;
	}
	.author-image {
		display: flex;
		justify-content: center;
	}
}
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
	.fade-up-entry {
		opacity: 1 !important;
		transform: none !important;
		animation: none !important;
	}
	body.fade-out {
		opacity: 1 !important;
	}
}
/* ===============================================  
ANIMATIONS 
=============================================== */

.fade-up-entry {
	opacity: 0;
	animation: contentSlideUp 1s cubic-bezier(0.2, 1, 0.2, 1) forwards;
	animation-delay: 0.1s;
}
@keyframes contentSlideUp {
	0% {
		opacity: 0;
		transform: translateY(2.5rem);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
/* ===============================================  
FOOTER 
=============================================== */

.site-footer {
	background-color: var(--c-navy);
	color: var(--c-stone);
	padding-top: 4rem;
	padding-bottom: 2rem;
	font-size: 0.95rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: auto;
}
@media (max-width: 48rem) {
	.site-footer {
		padding-top: 3rem;
	}
}
.footer-grid {
	display: flex;
	justify-content: space-between;
	gap: 4rem;
	margin-bottom: 5rem;
}
@media (max-width: 48rem) {
	.footer-grid {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		gap: 1rem;
		margin-bottom: 2rem;
	}
}
.footer-col .hero-label {
	white-space: nowrap
}
.footer-col p {
	text-wrap: balance;
}
.footer-widget-title {
	color: var(--c-white);
	font-family: var(--font-serif);
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
	font-weight: 700;
}
.footer-logo {
	margin-bottom: 1.5rem;
	display: inline-block;
}
.footer-desc {
	line-height: 1.7;
	opacity: 0.8;
	margin-bottom: 2rem;
}
.footer-col ul {
	margin: 0;
	padding: 0;
}
.footer-col li {
	margin:0;
}
.footer-col ul li a {
	color: var(--c-stone-light);
	opacity:0.7;
	transition: all 0.3s ease;
	display: block;
	padding:3px 0;
	white-space: nowrap
}
.footer-col ul li a:hover {
	color: var(--c-stone-light);
	opacity:1;
	transform: translateX(0.25rem);
}
.footer-contact-item {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.25rem;
	color: var(--c-stone-light);
}
.footer-contact-item i {
	color: var(--c-gold);
	font-size: 1.2rem;
	margin-top: 0.2rem;
}
.footer-form input[type="email"] {
	width: 100%;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 1rem;
	color: var(--c-white);
	margin-bottom: 1rem;
	outline: none;
}
.footer-form input[type="email"]:focus {
	border-color: var(--c-gold);
}
.footer-form .btn {
	width: 100%;
	justify-content: center;
	background: var(--c-gold);
	color: var(--c-navy);
	border: none;
	padding: 1rem;
}
.footer-form .btn:hover {
	background: var(--c-white);
}
.site-info {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 2rem 0;
	background: var(--c-navy-light);
}
.site-info-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem;
}
.copyright {
	font-size: 0.85rem;
	opacity: 0.6;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.social-links {
	display: flex;
	gap: 1.5rem;
}
.social-links a {
	color: var(--c-white);
	opacity: 0.6;
	font-size: 1.25rem;
}
.social-links a:hover {
	opacity: 1;
	color: var(--c-gold);
}
.footer-col h3 {
	color: #fff;
}
.book-single-details blockquote {
	background-color: #fff;
	border-left: 5px solid var(--c-navy);
	padding: 3rem;
	margin: 2rem 0;
	position: relative;
	clear: both;
}
.hero-label {
	color: var(--c-gold);
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	display: block;
	margin-bottom: 1rem;
	font-family: var(--font-sans);
}
.btn.btn-white-gold {
	border-bottom: 2px solid #fff;
	color: #fff;
	border-color: #fff;
}
.btn.btn-white-gold:hover {
	border-bottom: 2px solid #BFA15F;
	color: #BFA15F;
	border-color: #BFA15F;
}
.btn.btn-navy-sienna {
	border-bottom: 2px solid #0F2040;
	color: #0F2040;
	border-color: #0F2040;
}
.btn.btn-navy-sienna:hover {
	border-bottom: 2px solid #C05621;
	color: #C05621;
	border-color: #C05621;
}
blockquote p {
	text-wrap: balance;
}

/* ===============================================  
IMAGES 
=============================================== */

img {
	max-width: 100%;
	height: auto;
}
.alignleft {
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
}
.alignright {
	float: right;
	margin-left: 20px;
	margin-bottom: 20px;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
	clear: both;
}
.wp-caption.alignleft {
	margin-right: 20px;
}
.wp-caption.alignright {
	margin-left: 20px;
}
.wp-caption.aligncenter {
	margin-left: auto;
	margin-right: auto;
}
