/**
 * Theme layer: documented tokens, WordPress menu alignment, a11y helpers.
 * Main visual design lives in main.css (compiled from the static home build).
 */

:root {
	--ym-font-sans: "DM Sans", system-ui, sans-serif;
	--ym-font-script: "Caveat", cursive;
	--ym-color-ink: #2b2118;
	--ym-color-paper: #faf6ef;
	--ym-color-gold: #c9a227;
	--ym-color-green: #5a7a4a;
	--ym-container: 72rem;
	--ym-focus-ring: 2px solid #2b2118;
}

/* Custom page scrollbar */
html {
	scrollbar-width: thin;
	scrollbar-color: var(--ym-color-gold) #eee4d2;
}

html::-webkit-scrollbar {
	width: .72rem;
}

html::-webkit-scrollbar-track {
	background: #eee4d2;
}

html::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, #d9b73e 0%, #a77a18 100%);
	border: 2px solid #eee4d2;
	border-radius: 999px;
}

html::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, #e3c34f 0%, #b8861d 100%);
}

html::-webkit-scrollbar-thumb:active {
	background: var(--ym-color-green);
}

html::-webkit-scrollbar-corner {
	background: #eee4d2;
}

@media (hover: hover) and (pointer: fine) {
	html:has(.ym-cursor) {
		cursor: none;
	}

	html:has(.ym-cursor) a,
	html:has(.ym-cursor) button,
	html:has(.ym-cursor) input,
	html:has(.ym-cursor) select,
	html:has(.ym-cursor) textarea,
	html:has(.ym-cursor) summary,
	html:has(.ym-cursor) [role="button"] {
		cursor: none;
	}

	.ym-cursor {
		position: fixed;
		z-index: 9999;
		top: -1.1rem;
		left: -1.1rem;
		width: 2.2rem;
		height: 2.2rem;
		border: 1px solid rgba(201, 162, 39, .8);
		border-radius: 50%;
		pointer-events: none;
		opacity: 0;
		transform: translate3d(-100px, -100px, 0);
		transition: opacity .2s ease, width .2s ease, height .2s ease, top .2s ease, left .2s ease, background-color .2s ease, border-color .2s ease;
		will-change: transform;
	}

	.ym-cursor.is-visible {
		opacity: 1;
	}

	.ym-cursor__dot {
		position: absolute;
		top: 50%;
		left: 50%;
		width: .35rem;
		height: .35rem;
		border-radius: 50%;
		background: var(--ym-color-gold);
		transform: translate(-50%, -50%);
	}

	.ym-cursor.is-hovering {
		top: -.85rem;
		left: -.85rem;
		width: 1.7rem;
		height: 1.7rem;
		background: rgba(201, 162, 39, .14);
		border-color: var(--ym-color-gold);
	}
}

@media (prefers-reduced-motion: reduce), (hover: none), (pointer: coarse) {
	.ym-cursor {
		display: none;
	}
}

/* Print on Demand */
.pod-page {
	overflow: hidden;
	background: var(--ym-color-ink);
	color: var(--ym-color-paper);
}
.pod-hero,
.pod-steps,
.pod-why {
	padding: clamp(5rem, 10vw, 9rem) 0;
}

.pod-hero {
	padding-top: clamp(4rem, 8vw, 7rem);
	padding-bottom: clamp(4rem, 8vw, 7rem);
}

.pod-hero__grid,
.pod-product__grid,
.pod-why__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
	align-items: center;
	gap: clamp(2rem, 8vw, 8rem);
	min-height: 590px;
}

.pod-hero__copy {
	max-width: 38rem;
}

.pod-hero__copy .script-title {
	margin: 1rem 0 1.25rem;
	font-size: clamp(4.5rem, 9vw, 7.5rem);
	line-height: .9;
}

.pod-product__copy > p:not(.eyebrow) {
	max-width: 34rem;
	font-size: 1.1rem;
	line-height: 1.75;
}

.pod-hero__copy > p:not(.eyebrow) {
	max-width: 34rem;
	color: #fff4dc;
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	line-height: 1.55;
}

.pod-hero__copy > p:not(.eyebrow) {
	margin-bottom: 2rem;
}
.pod-hero__art,
.pod-product__art {
	display: grid;
	place-items: center;
}
.pod-hero__art img,
.pod-product__art img {
	display: block;
	width: min(100%, 34rem);
	height: auto;
	filter: drop-shadow(0 1.5rem 2rem rgba(0, 0, 0, .22));
}
.pod-benefits {
	padding: clamp(5rem, 9vw, 8rem) 0;
	color: var(--ym-color-ink);
}
.pod-section-heading {
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
	max-width: 42rem;
}
.pod-benefit-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
}
.pod-benefit,
.pod-step {
	position: relative;
	border-top: 1px solid currentColor;
	padding-top: 1rem;
}

.pod-benefit {
	padding: 1.5rem;
	border: 1px solid rgba(43, 33, 24, .13);
	border-radius: 1rem;
	background: rgba(255, 255, 255, .38);
	box-shadow: 0 .8rem 1.8rem rgba(43, 33, 24, .06);
	transition: transform .3s ease, box-shadow .3s ease, background-color .3s ease;
}

.pod-benefit:hover {
	transform: translateY(-.4rem);
	background: rgba(255, 255, 255, .72);
	box-shadow: 0 1.2rem 2.4rem rgba(43, 33, 24, .12);
}

.pod-benefit__icon,
.pod-step__icon {
	display: grid;
	place-items: center;
	width: 3.1rem;
	height: 3.1rem;
	margin-bottom: 1.1rem;
	border-radius: 50%;
	background: var(--ym-color-green);
	color: var(--ym-color-gold);
	box-shadow: 0 .45rem 1rem rgba(0, 53, 42, .18);
}

.pod-benefit__icon svg,
.pod-step__icon svg {
	width: 1.35rem;
	height: 1.35rem;
}

.pod-benefit span,
.pod-step span {
	color: var(--ym-color-gold);
	font-weight: 700;
	letter-spacing: .1em;
}
.pod-benefit h3,
.pod-step h3 {
	margin: 1.75rem 0 .75rem;
	font-size: 1.15rem;
}
.pod-benefit p {
	line-height: 1.65;
}
.pod-step-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem 1.5rem;
}

.pod-step {
	padding: 1.4rem;
	border-top: 0;
	border-radius: 1rem;
	background: rgba(255, 255, 255, .06);
	transition: transform .3s ease, background-color .3s ease;
}

.pod-step:hover {
	transform: translateY(-.35rem);
	background: rgba(255, 255, 255, .1);
}

.pod-step__icon {
	background: var(--ym-color-gold);
	color: var(--ym-color-green);
}

.pod-step span {
	display: inline-block;
	font-size: .75rem;
}

.pod-why {
	background: #00352a;
}
.pod-check-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.pod-check-list li {
	border-bottom: 1px solid rgba(250, 246, 239, .25);
	display: flex;
	align-items: center;
	gap: .9rem;
	padding: 1.1rem 0;
	position: relative;
}

.pod-check-list li svg {
	flex: 0 0 auto;
	width: 1.25rem;
	height: 1.25rem;
	color: var(--ym-color-gold);
}

.pod-why__badge {
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	margin-top: 1.8rem;
	padding: .6rem .85rem;
	border: 1px solid rgba(250, 246, 239, .25);
	border-radius: 999px;
	color: var(--ym-color-gold);
	font-size: .78rem;
	letter-spacing: .04em;
}

.pod-why__badge svg {
	width: 1rem;
	height: 1rem;
	animation: pod-heartbeat 2.4s ease-in-out infinite;
}

@keyframes pod-heartbeat {
	0%, 100% { transform: scale(1); }
	12% { transform: scale(1.18); }
	24% { transform: scale(1); }
}
.pod-product {
	padding: clamp(5rem, 10vw, 9rem) 0;
	color: var(--ym-color-ink);
}
.pod-purchase-form {
	background: rgba(255, 255, 255, .62);
	border: 1px solid rgba(43, 33, 24, .16);
	border-radius: 1rem;
	margin-top: 2rem;
	max-width: 30rem;
	padding: 1.5rem;
}
.pod-purchase-form__price {
	font-size: 1.65rem;
	font-weight: 700;
}
.pod-purchase-form__note {
	font-size: .9rem;
	margin: .25rem 0 1.5rem;
	opacity: .75;
}
.pod-purchase-form label {
	display: block;
	font-weight: 700;
	margin: 1rem 0 .4rem;
}
.pod-purchase-form select,
.pod-purchase-form input[type="number"] {
	background: #fff;
	border: 1px solid rgba(43, 33, 24, .28);
	border-radius: .4rem;
	box-sizing: border-box;
	color: inherit;
	font: inherit;
	padding: .75rem;
	width: 100%;
}
.pod-purchase-form .button {
	margin-top: 1.5rem;
	width: 100%;
}

.pod-purchase-form__actions {
	display: grid;
	gap: .75rem;
	margin-top: 1.5rem;
}

.pod-purchase-form__details {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: .6rem;
	margin: 1.25rem 0 0;
	padding: 1rem 0 0;
	border-top: 1px solid rgba(43, 33, 24, .12);
	list-style: none;
}

.pod-purchase-form__details li {
	display: grid;
	gap: .2rem;
	font-size: .78rem;
	line-height: 1.35;
}

.pod-purchase-form__details strong {
	color: var(--ym-color-green);
	font-size: .68rem;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.pod-purchase-form__actions .button {
	margin-top: 0;
	width: 100%;
}

.pod-purchase-form__actions .button-outline {
	border-color: var(--ym-color-green);
	color: var(--ym-color-green);
}
.pod-product-unavailable {
	border-left: 3px solid var(--ym-color-gold);
	padding-left: 1rem;
}

.book-product-page {
	overflow: hidden;
}

.book-product-hero {
	padding: clamp(5rem, 10vw, 8rem) 0;
	background:
		linear-gradient(90deg, rgba(0, 37, 30, .94), rgba(0, 28, 23, .5)),
		url("../images/inner-page-banner.png") center / cover no-repeat;
	color: var(--ym-color-paper);
}

.book-product-hero__inner {
	max-width: 50rem;
}

.book-product-hero .script-title {
	margin: 1rem 0;
	font-size: clamp(4rem, 8vw, 7rem);
	line-height: .9;
}

.book-product-hero p:not(.eyebrow) {
	max-width: 36rem;
	font-size: 1.15rem;
	line-height: 1.65;
	color: #fff4dc;
}

.book-product-details {
	padding: clamp(5rem, 10vw, 8rem) 0;
}

.book-product-details__grid {
	display: grid;
	grid-template-columns: minmax(16rem, .7fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(2rem, 8vw, 8rem);
}

.book-product-details__image {
	max-width: 25rem;
	margin: 0 auto;
}

.book-product-details__image img {
	display: block;
	width: 100%;
	border-radius: .75rem;
	box-shadow: 0 1.5rem 2.5rem rgba(43, 33, 24, .18);
}

.book-product-details .script-title {
	margin: 1rem 0;
	font-size: clamp(3rem, 6vw, 5rem);
}

.book-product-details p:not(.eyebrow) {
	max-width: 38rem;
	margin-bottom: 1.75rem;
	font-size: 1.05rem;
	line-height: 1.75;
}

/* WooCommerce book product */
.woocommerce-main {
	padding: clamp(3rem, 7vw, 6rem) 0;
	background: #f5efe5;
	color: var(--ym-color-ink);
}

.woocommerce-main .product {
	display: grid;
	grid-template-columns: minmax(18rem, .8fr) minmax(0, 1.2fr);
	gap: clamp(2rem, 7vw, 6rem);
	align-items: start;
}

.woocommerce-main .product::before,
.woocommerce-main .product::after {
	display: none;
}

.woocommerce-main .woocommerce-product-gallery,
.woocommerce-main .summary {
	float: none;
	width: auto;
	margin: 0;
}

.woocommerce-main .woocommerce-product-gallery {
	padding: clamp(1rem, 3vw, 2rem);
	border-radius: 1.25rem;
	background: #fffaf0;
	box-shadow: 0 1.5rem 3rem rgba(43, 33, 24, .1);
}

.woocommerce-main .ym-product-cover-gallery img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 5;
	object-fit: contain;
}

.woocommerce-main .product_title {
	margin: 0 0 .75rem;
	color: var(--ym-color-ink);
	font-family: var(--font-script);
	font-size: clamp(2.8rem, 5vw, 5rem);
	line-height: .95;
}

.woocommerce-main .price {
	color: var(--ym-color-green);
	font-size: 1.25rem;
	font-weight: 700;
}

.woocommerce-main .woocommerce-product-details__short-description,
.woocommerce-main .woocommerce-product-details__short-description p {
	font-size: 1.05rem;
	line-height: 1.75;
}

.woocommerce-main .variations_form,
.woocommerce-main form.cart {
	margin-top: 1.5rem;
	padding: 1.25rem;
	border: 1px solid rgba(43, 33, 24, .12);
	border-radius: 1rem;
	background: rgba(255, 255, 255, .6);
}

.woocommerce-main .variations {
	width: 100%;
	margin-bottom: 1rem;
}

.woocommerce-main .variations td {
	padding: .45rem 0;
	vertical-align: middle;
}

.woocommerce-main .variations label {
	font-weight: 700;
}

.woocommerce-main .variations select,
.woocommerce-main .quantity .qty {
	width: 100%;
	min-height: 2.75rem;
	padding: .65rem .75rem;
	border: 1px solid rgba(43, 33, 24, .24);
	border-radius: .45rem;
	background: #fff;
	color: var(--ym-color-ink);
}

.woocommerce-main .single_add_to_cart_button {
	min-height: 2.8rem;
	padding: .75rem 1.25rem;
	border: 0;
	border-radius: 999px;
	background: var(--ym-color-gold);
	color: var(--ym-color-ink);
	font-weight: 700;
	cursor: pointer;
}

.woocommerce-main .single_add_to_cart_button:hover {
	background: #b78d1d;
}

.woocommerce-main .woocommerce-tabs {
	grid-column: 1 / -1;
	margin-top: 1rem;
}

.woocommerce-main .woocommerce-tabs ul.tabs {
	padding: 0;
}

.woocommerce-main .woocommerce-Tabs-panel {
	padding: 1.5rem 0;
	border-top: 1px solid rgba(43, 33, 24, .15);
	line-height: 1.75;
}

@media (max-width: 767px) {
	.woocommerce-main .product {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.woocommerce-main .woocommerce-tabs {
		grid-column: auto;
	}
}

/* Theme-matched WooCommerce product detail */
.book-product-single {
	padding: clamp(4rem, 8vw, 7rem) 0;
	background: #f5efe5;
	color: var(--ym-color-ink);
}

.book-product-single__top {
	display: grid;
	grid-template-columns: minmax(15rem, .72fr) minmax(0, 1.18fr) minmax(18rem, .7fr);
	gap: clamp(1.5rem, 4vw, 4rem);
	align-items: start;
}

.book-product-single__cover-frame {
	padding: 1rem;
	border-radius: 1rem;
	background: #fffaf0;
	box-shadow: 0 1.5rem 3rem rgba(43, 33, 24, .12);
	transform: rotate(-1deg);
}

.book-product-single__cover-frame img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: .5rem;
}

.book-product-single__cover-note {
	margin: 1.25rem auto 0;
	max-width: 16rem;
	color: #6c582f;
	font-family: var(--font-script);
	font-size: 1.35rem;
	line-height: 1.1;
	text-align: center;
	transform: rotate(-2deg);
}

.book-product-single__summary {
	padding-top: .5rem;
}

.book-product-single__summary h1 {
	margin: .75rem 0 .4rem;
	color: var(--ym-color-ink);
	font-family: var(--font-script);
	font-size: clamp(3.25rem, 5.5vw, 5.5rem);
	line-height: .88;
}

.book-product-single__byline {
	color: #6c582f;
	font-size: .95rem;
}

.book-product-single__rating {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .6rem;
	margin: 1rem 0 1.5rem;
	color: #6c582f;
	font-size: .88rem;
}

.book-product-single__rating span:first-child {
	color: var(--ym-color-gold);
	letter-spacing: .14em;
}

.book-product-single__description {
	font-size: 1.04rem;
	line-height: 1.75;
}

.book-product-single__description p {
	margin: 0 0 1rem;
}

.book-product-single__short-description {
	margin-top: 1rem;
	color: #6c582f;
	font-size: .94rem;
	line-height: 1.6;
}

.book-product-single__facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1.75rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(43, 33, 24, .14);
}

.book-product-single__facts div {
	display: grid;
	gap: .25rem;
}

.book-product-single__facts strong {
	color: var(--ym-color-green);
	font-size: .7rem;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.book-product-single__facts span {
	font-weight: 600;
}

.book-product-single__purchase-inner {
	padding: 1.5rem;
	border: 1px solid rgba(43, 33, 24, .12);
	border-radius: 1.25rem;
	background: #f7ecd6;
	box-shadow: 0 1.25rem 2.5rem rgba(43, 33, 24, .08);
}

.book-product-single__purchase .script-title {
	margin: .7rem 0 1rem;
	font-size: clamp(2.4rem, 4vw, 3.6rem);
	line-height: .95;
}

.book-product-single__purchase-note {
	margin-bottom: 1.25rem;
	color: #6c582f;
	font-size: .94rem;
	line-height: 1.55;
}

.book-product-single__purchase .variations_form,
.book-product-single__purchase form.cart {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
}

.book-product-single__purchase .variations {
	margin-bottom: 1rem;
}

.book-product-single__purchase .variations td {
	display: block;
	padding: .25rem 0;
}

.book-product-single__purchase .variations select,
.book-product-single__purchase .quantity .qty {
	width: 100%;
	min-height: 2.75rem;
	padding: .65rem .75rem;
	border: 1px solid rgba(43, 33, 24, .24);
	border-radius: .45rem;
	background: #fffaf0;
	color: var(--ym-color-ink);
}

.book-product-single__purchase .single_variation_wrap {
	margin-top: 1rem;
}

.book-product-single__purchase .single_variation .price {
	display: block;
	margin-bottom: .75rem;
	color: var(--ym-color-green);
	font-size: 1.35rem;
	font-weight: 700;
}

.book-product-single__purchase .single_add_to_cart_button {
	width: 100%;
	min-height: 2.8rem;
	padding: .75rem 1rem;
	border: 0;
	border-radius: 999px;
	background: var(--ym-color-gold);
	color: var(--ym-color-ink);
	font-weight: 700;
	cursor: pointer;
}

.book-product-single__purchase .single_add_to_cart_button:hover {
	background: #b78d1d;
}

.book-product-single__amazon {
	width: 100%;
	margin-top: .75rem;
	border-color: var(--ym-color-green);
	color: var(--ym-color-green);
	justify-content: center;
}

.book-product-single__details {
	display: grid;
	grid-template-columns: minmax(16rem, .8fr) minmax(0, 1.2fr);
	gap: clamp(2rem, 8vw, 8rem);
	margin-top: clamp(4rem, 8vw, 7rem);
	padding: clamp(2rem, 5vw, 4rem) 0 0;
	border-top: 1px solid rgba(43, 33, 24, .14);
}

.book-product-single__details .script-title {
	margin-top: .8rem;
	font-size: clamp(3rem, 5vw, 5rem);
	line-height: .95;
}

.book-product-single__details-copy {
	max-width: 42rem;
	font-size: 1.05rem;
	line-height: 1.8;
}

.book-product-single__catalog-details {
	display: grid;
	gap: .7rem;
	margin: 1.5rem 0 0;
	max-width: 28rem;
}

.book-product-single__catalog-details div {
	display: grid;
	grid-template-columns: 7rem 1fr;
	gap: .75rem;
	padding-bottom: .65rem;
	border-bottom: 1px solid rgba(43, 33, 24, .12);
}

.book-product-single__catalog-details dt {
	color: var(--ym-color-green);
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.book-product-single__catalog-details dd {
	margin: 0;
	font-weight: 600;
}

@media (max-width: 1050px) {
	.book-product-single__top {
		grid-template-columns: minmax(14rem, .65fr) minmax(0, 1fr);
	}

	.book-product-single__purchase {
		grid-column: 1 / -1;
		max-width: 34rem;
	}
}

@media (max-width: 700px) {
	body {
		overflow-x: hidden;
	}

	.book-product-single__top,
	.book-product-single__details {
		grid-template-columns: 1fr;
	}

	.book-product-single__cover {
		max-width: 22rem;
		margin: 0 auto;
	}

	.book-product-single__purchase {
		grid-column: auto;
		max-width: none;
	}

	.book-product-single__facts {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.book-product-details__grid {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 800px) {
	.pod-hero__grid,
	.pod-product__grid,
	.pod-why__grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	.pod-hero__grid {
		min-height: 0;
	}
	.pod-hero__art { order: -1; }
	.pod-benefit-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
	.pod-step-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
	.pod-benefit-grid,
	.pod-step-grid { grid-template-columns: 1fr; }
	.pod-hero,
	.pod-steps,
	.pod-why,
	.pod-product,
	.pod-benefits { padding: 4rem 0; }

	.pod-purchase-form__details {
		grid-template-columns: 1fr;
	}

	.pod-benefit,
	.pod-step {
		padding: 1.25rem;
	}

	.pod-why__badge {
		max-width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.pod-benefit,
	.pod-step {
		transition: none;
	}

	.pod-why__badge svg {
		animation: none;
	}
}

/* Editorial polish for the Print on Demand feature sections. */
.pod-benefits {
	position: relative;
	isolation: isolate;
	background:
		radial-gradient(circle at 8% 18%, rgba(201, 162, 39, .13), transparent 22rem),
		radial-gradient(circle at 92% 82%, rgba(0, 53, 42, .08), transparent 25rem),
		var(--ym-color-paper);
}

.pod-benefits::before,
.pod-steps::before,
.pod-why::before {
	position: absolute;
	inset: 0;
	pointer-events: none;
	content: "";
	opacity: .28;
	background-image: radial-gradient(rgba(43, 33, 24, .18) .65px, transparent .65px);
	background-size: 9px 9px;
	mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.pod-benefits .container,
.pod-steps .container,
.pod-why .container {
	position: relative;
	z-index: 1;
}

.pod-section-heading {
	position: relative;
	padding-left: 1.25rem;
}

.pod-section-heading::before {
	position: absolute;
	top: .25rem;
	bottom: .35rem;
	left: 0;
	width: 3px;
	border-radius: 999px;
	background: var(--ym-color-gold);
	content: "";
}

.pod-section-heading .script-title {
	margin-top: .8rem;
	font-size: clamp(3.4rem, 6vw, 5.8rem);
	line-height: .88;
}

.pod-benefit-grid {
	gap: 1.5rem;
}

.pod-benefit {
	min-height: 19rem;
	padding: 1.75rem 1.5rem 1.5rem;
	border-color: rgba(43, 33, 24, .16);
	border-radius: 1.35rem;
	background: rgba(255, 252, 246, .72);
	box-shadow: 0 1rem 2rem rgba(43, 33, 24, .07);
}

.pod-benefit::after {
	position: absolute;
	top: 1.2rem;
	right: 1.2rem;
	color: rgba(43, 33, 24, .14);
	font-family: var(--font-script);
	font-size: 2.4rem;
	line-height: 1;
	content: "✦";
}

.pod-benefit:hover {
	transform: translateY(-.65rem) rotate(-.4deg);
	border-color: rgba(201, 162, 39, .55);
	box-shadow: 0 1.5rem 2.8rem rgba(43, 33, 24, .14);
}

.pod-benefit:nth-child(even):hover {
	transform: translateY(-.65rem) rotate(.4deg);
}

.pod-benefit__icon {
	width: 3.5rem;
	height: 3.5rem;
	margin-bottom: 1.5rem;
	border: 5px solid rgba(201, 162, 39, .28);
	background: var(--ym-color-gold);
	color: var(--ym-color-green);
	box-shadow: 0 .6rem 1.3rem rgba(0, 53, 42, .2);
}

.pod-benefit span {
	display: block;
	font-size: .7rem;
	letter-spacing: .16em;
}

.pod-benefit h3 {
	margin: .75rem 0 .65rem;
	font-size: 1.2rem;
}

.pod-benefit p {
	max-width: 16rem;
	color: rgba(43, 33, 24, .75);
	font-size: .95rem;
}

.pod-steps {
	position: relative;
	isolation: isolate;
	background:
		linear-gradient(135deg, rgba(0, 53, 42, .98), rgba(0, 39, 32, .98)),
		var(--ym-color-ink);
}

.pod-steps .pod-section-heading {
	color: var(--ym-color-paper);
}

.pod-steps .pod-section-heading::before {
	background: var(--ym-color-gold);
}

.pod-step-grid {
	position: relative;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.pod-step-grid::before {
	position: absolute;
	top: 3.1rem;
	right: 9%;
	left: 9%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(201, 162, 39, .65), transparent);
	content: "";
}

.pod-step {
	min-height: 10rem;
	padding: 1.25rem;
	border: 1px solid rgba(250, 246, 239, .14);
	background: rgba(255, 255, 255, .055);
	backdrop-filter: blur(5px);
}

.pod-step__icon {
	position: relative;
	z-index: 1;
	width: 3.6rem;
	height: 3.6rem;
	margin-bottom: 1rem;
	border: 5px solid rgba(250, 246, 239, .8);
	background: var(--ym-color-paper);
	color: var(--ym-color-green);
	box-shadow: 0 .5rem 1.2rem rgba(0, 0, 0, .22);
}

.pod-step span {
	color: rgba(250, 246, 239, .58);
}

.pod-step h3 {
	margin-top: .55rem;
	color: var(--ym-color-paper);
	font-size: 1rem;
}

.pod-step:hover {
	transform: translateY(-.45rem);
	border-color: rgba(201, 162, 39, .62);
	background: rgba(255, 255, 255, .1);
}

.pod-why {
	position: relative;
	isolation: isolate;
	background:
		radial-gradient(circle at 85% 15%, rgba(201, 162, 39, .18), transparent 22rem),
		#00352a;
}

.pod-why__grid {
	position: relative;
}

.pod-why__grid > div:first-child {
	position: relative;
}

.pod-why__grid > div:first-child::after {
	position: absolute;
	top: -1.5rem;
	right: 5%;
	width: 7rem;
	height: 7rem;
	border: 1px solid rgba(201, 162, 39, .35);
	border-radius: 50%;
	box-shadow: inset 0 0 0 1rem rgba(201, 162, 39, .06);
	content: "";
	transform: rotate(18deg);
}

.pod-why .script-title {
	position: relative;
	z-index: 1;
	font-size: clamp(3.5rem, 7vw, 6.4rem);
	line-height: .88;
}

.pod-check-list {
	padding: 1rem 1.5rem;
	border: 1px solid rgba(250, 246, 239, .18);
	border-radius: 1.25rem;
	background: rgba(0, 0, 0, .12);
}

.pod-check-list li:last-child {
	border-bottom: 0;
}

.pod-check-list li svg {
	width: 1.4rem;
	height: 1.4rem;
	padding: .4rem;
	border-radius: 50%;
	background: var(--ym-color-gold);
	color: var(--ym-color-green);
}

@media (max-width: 800px) {
	.pod-section-heading .script-title {
		font-size: clamp(3.2rem, 12vw, 5rem);
	}

	.pod-step-grid::before {
		display: none;
	}
}

@media (max-width: 520px) {
	.pod-benefit {
		min-height: 0;
	}

	.pod-benefit p {
		max-width: none;
	}

	.pod-check-list {
		padding: .75rem 1rem;
	}

	.pod-why__grid > div:first-child::after {
		top: -1rem;
		right: 0;
		width: 5rem;
		height: 5rem;
	}
}

/* Keep the Book product aligned with the Print on Demand edition section. */
.book-product-single {
	background: var(--ym-color-paper);
	color: var(--ym-color-ink);
}

.book-product-single__top {
	grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
	min-height: 590px;
	padding: clamp(5rem, 10vw, 9rem) 0;
	gap: clamp(2rem, 8vw, 8rem);
}

.book-product-single__cover {
	max-width: none;
}

.book-product-single__cover img {
	display: block;
	width: min(100%, 34rem);
	height: auto;
	filter: drop-shadow(0 1.5rem 2rem rgba(0, 0, 0, .22));
}

.book-product-single__summary h1 {
	margin: 1rem 0 1.25rem;
	font-family: var(--font-script);
	font-size: clamp(4rem, 8vw, 6.5rem);
	line-height: .9;
}

.book-product-single__summary > p:not(.eyebrow) {
	max-width: 34rem;
	font-size: 1.1rem;
	line-height: 1.75;
}

.book-product-single__purchase {
	margin-top: 2rem;
	max-width: 30rem;
}

.book-product-single__purchase .variations_form,
.book-product-single__purchase form.cart {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
}

.book-product-single__purchase .variations {
	margin-bottom: 1rem;
}

.book-product-single__purchase .variations td {
	display: block;
	padding: .25rem 0;
}

.book-product-single__purchase .variations select,
.book-product-single__purchase .quantity .qty {
	width: 100%;
	min-height: 2.75rem;
	padding: .75rem;
	border: 1px solid rgba(43, 33, 24, .28);
	border-radius: .4rem;
	background: #fff;
	color: inherit;
	font: inherit;
	box-sizing: border-box;
}

.book-product-single__purchase .single_variation_wrap {
	margin-top: 1rem;
}

.book-product-single__purchase .single_variation .price {
	display: block;
	margin-bottom: .75rem;
	color: var(--ym-color-green);
	font-size: 1.35rem;
	font-weight: 700;
}

.book-product-single__purchase .single_add_to_cart_button {
	width: 100%;
	margin-top: 1.5rem;
}

.book-product-single__purchase > .button {
	display: flex;
	justify-content: center;
	width: 100%;
	margin-top: .75rem;
}

.book-product-single__details {
	margin: 0 0 clamp(4rem, 8vw, 7rem);
}

@media (max-width: 800px) {
	html,
	body {
		overflow-x: hidden;
	}

	.book-product-single__top {
		grid-template-columns: 1fr;
		min-height: 0;
		padding: 4rem 0;
		gap: 3rem;
	}

	.book-product-single__cover {
		order: -1;
	}

	.book-product-single__cover img {
		margin: 0 auto;
	}
}

/* Blog pages */
.blog-page {
	background: #f5efe5;
	color: var(--ym-color-ink);
}

.blog-page__hero {
	background:
		radial-gradient(at top right, rgba(201, 162, 39, 0.18), transparent 32%),
		linear-gradient(135deg, #093127 0%, #052b24 100%);
		color: #fdf7ed;
	padding: clamp(4rem, 8vw, 7rem) 0 clamp(5rem, 8vw, 6rem);
}

.blog-page__hero-inner {
	max-width: 52rem;
}

.blog-page__eyebrow {
	margin-bottom: 1rem;
	font-size: .78rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	font-weight: 700;
}

.blog-page__eyebrow--dark {
	color: var(--ym-color-green);
}

.blog-page__title {
	margin: 0 0 1rem;
	font-size: clamp(4rem, 9vw, 7rem);
	line-height: .9;
}

.blog-page__intro {
	max-width: 42rem;
	font-size: clamp(1.06rem, 2vw, 1.38rem);
	line-height: 1.65;
	color: rgba(253, 247, 237, 0.82);
}

.blog-page__filter {
	margin-top: 2rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-page__filter span {
	display: block;
	margin-bottom: .9rem;
	font-size: .77rem;
	letter-spacing: .15em;
	text-transform: uppercase;
	opacity: .8;
}

.blog-page__filter-list {
	display: flex;
	flex-wrap: wrap;
	gap: .65rem;
}

.blog-page__filter-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: .62rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	font-size: .84rem;
	font-weight: 600;
	transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.blog-page__filter-pill:hover,
.blog-page__filter-pill:focus-visible,
.blog-page__filter-pill.is-active {
	background: rgba(201, 162, 39, 0.12);
	border-color: rgba(201, 162, 39, 0.8);
	transform: translateY(-1px);
}

.blog-page__list {
	padding: clamp(4rem, 8vw, 6rem) 0;
}

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

.blog-archive-card {
	border-radius: 1.5rem;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(43, 33, 24, 0.08);
	box-shadow: 0 20px 40px rgba(14, 22, 18, 0.06);
	transition: transform .22s ease, box-shadow .22s ease;
}

.blog-archive-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 28px 46px rgba(14, 22, 18, 0.1);
}

.blog-archive-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
}

.blog-archive-card__image {
	aspect-ratio: 15 / 11;
	overflow: hidden;
	background: #e8dcc4;
}

.blog-archive-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.blog-archive-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1.35rem 1.3rem 1.5rem;
}

.blog-archive-card__meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	margin-bottom: .9rem;
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--ym-color-green);
}

.blog-archive-card__meta time {
	color: #766545;
}

.blog-archive-card__content h3 {
	margin: 0 0 .8rem;
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	line-height: 1.2;
	font-family: var(--ym-font-sans);
	font-weight: 700;
}

.blog-archive-card__content p {
	margin-top: auto;
	color: rgba(43, 33, 24, 0.75);
	line-height: 1.7;
}

.blog-archive-card__read-more {
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	margin-top: 1rem;
	font-weight: 700;
	color: var(--ym-color-green);
}

.blog-page__newsletter {
	padding: 0 0 clamp(4rem, 8vw, 6rem);
}

.blog-page__newsletter-panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: clamp(2rem, 5vw, 3rem);
	border-radius: 1.5rem;
	background: linear-gradient(135deg, #f7ecd6, #f2e3c7);
	border: 1px solid rgba(43, 33, 24, 0.05);
	box-shadow: 0 18px 36px rgba(14, 22, 18, 0.05);
}

.blog-page__newsletter-panel .blog-page__eyebrow {
	color: var(--ym-color-green);
}

.blog-page__newsletter-title {
	margin-top: .8rem;
	font-size: clamp(2.4rem, 5vw, 4rem);
	line-height: 1;
	color: var(--ym-color-green);
}

.blog-page__newsletter-title em {
	color: var(--ym-color-gold);
}

.blog-page__newsletter-panel .button {
	flex: 0 0 auto;
}

.blog-single__header {
	background: linear-gradient(135deg, #093127 0%, #052b24 100%);
	padding: clamp(4rem, 8vw, 6rem) 0 2rem;
	color: #fdf7ed;
}

.blog-single__header-inner {
	max-width: 52rem;
}

.blog-single__title {
	margin: 0 0 1rem;
	font-size: clamp(3rem, 7vw, 6rem);
	line-height: .95;
}

.blog-single__meta {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem 1.25rem;
	font-size: .85rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(253, 247, 237, 0.8);
}

.blog-single__feature {
	padding: 0 0 2.5rem;
	background: linear-gradient(180deg, #093127 0%, #093127 22%, #f5efe5 22%, #f5efe5 100%);
}

.blog-single__feature-image {
	overflow: hidden;
	border-radius: 1.5rem;
	box-shadow: 0 30px 50px rgba(6, 17, 15, 0.12);
	background: #e3d7c3;
}

.blog-single__feature-image img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 42rem;
	object-fit: cover;
}

.blog-single__content-area {
	padding: 0 0 clamp(4rem, 8vw, 6rem);
	background: #f5efe5;
}

.blog-single__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(18rem, .7fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}

.blog-single__article {
	background: rgba(255, 255, 255, 0.6);
	border: 1px solid rgba(43, 33, 24, 0.08);
	border-radius: 1.5rem;
	padding: clamp(1.5rem, 4vw, 3rem);
	box-shadow: 0 20px 36px rgba(25, 20, 14, 0.04);
}

.blog-single__article-body {
	max-width: 42rem;
	font-size: 1.06rem;
	line-height: 1.9;
	color: var(--ym-color-ink);
}

.blog-single__article-body p {
	margin-bottom: 1.3rem;
}

.blog-single__article-body h2,
.blog-single__article-body h3,
.blog-single__article-body h4 {
	margin: 2.25rem 0 1rem;
	line-height: 1.2;
}

.blog-single__article-body blockquote {
	margin: 2rem 0;
	padding: 1.5rem 2rem;
	border-left: 4px solid var(--ym-color-gold);
	background: rgba(201, 162, 39, 0.08);
	font-family: var(--ym-font-script);
	font-size: clamp(1.8rem, 3vw, 2.3rem);
	line-height: 1.2;
}

.blog-single__sidebar {
	display: grid;
	gap: 1.2rem;
}

.blog-single__sidebar-card {
	padding: 1.35rem 1.2rem;
	background: rgba(255, 255, 255, 0.68);
	border: 1px solid rgba(43, 33, 24, 0.08);
	border-radius: 1.2rem;
}

.blog-single__sidebar-card h2 {
	margin: 0 0 1rem;
	font-size: 1.1rem;
	font-weight: 700;
}

.blog-single__category-list,
.blog-single__recent-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.blog-single__category-list li + li,
.blog-single__recent-list li + li {
	margin-top: .7rem;
}

.blog-single__category-list a,
.blog-single__recent-list a {
	color: var(--ym-color-ink);
	font-weight: 600;
}

.blog-single__sidebar-card--cta {
	background: linear-gradient(135deg, rgba(9, 49, 39, 0.96), rgba(5, 43, 36, 0.92));
	color: #fdf7ed;
}

.blog-single__sidebar-card--cta p {
	margin-bottom: 1rem;
	line-height: 1.7;
	color: rgba(253, 247, 237, 0.82);
}

@media (max-width: 980px) {
	.blog-page__grid,
	.blog-single__layout {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.blog-single__layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.blog-page__grid {
		grid-template-columns: 1fr;
	}

	.blog-page__newsletter-panel {
		flex-direction: column;
		align-items: flex-start;
	}

	.blog-page__filter-list {
		overflow-x: auto;
		flex-wrap: nowrap;
		padding-bottom: 0.25rem;
	}

	.blog-archive-card__meta {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* WordPress admin bar offset */
.admin-bar .site-header {
	top: 32px;
}

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

/* Assigned menus: match flat nav markup from the static HTML */
.desktop-nav .menu,
.mobile-menu nav .menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: contents;
}

.desktop-nav .menu-item,
.mobile-menu nav .menu-item {
	display: contents;
}

.footer-column .menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-column .menu-item a {
	display: block;
}

/* Inner pages */
.site-main--page {
	padding: clamp(3rem, 8vw, 6rem) 0;
}

.page-header {
	margin-bottom: 2rem;
}

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

.error-404 {
	padding: clamp(4rem, 12vw, 8rem) 0;
	text-align: center;
}

.error-404 .button-row {
	justify-content: center;
	margin-top: 1.5rem;
}

.custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.custom-logo {
	max-height: 3rem;
	width: auto;
}

/* About Author */
.about-author-page {
	overflow: hidden;
}

.about-author-intro,
.about-book-hero,
.contact-author-intro,
.pod-hero,
.blog-page__hero,
.blog-single__header {
	background:
		linear-gradient(90deg, rgba(0, 37, 30, .94) 0%, rgba(0, 37, 30, .78) 45%, rgba(0, 28, 23, .5) 100%),
		url("../images/inner-page-banner.png") center center / cover no-repeat;
	background-color: #00251e;
	background-size: auto, 100% 100%;
	animation: ym-inner-banner-zoom 5s ease-in-out infinite alternate;
}

@keyframes ym-inner-banner-zoom {
	from {
		background-size: auto, 100% 100%;
	}
	to {
		background-size: auto, 115% 115%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.about-author-intro,
	.about-book-hero,
	.contact-author-intro,
	.pod-hero,
	.blog-page__hero,
	.blog-single__header {
		animation: none;
	}
}

.about-author-intro__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(18rem, 25rem);
	align-items: center;
	gap: clamp(2rem, 8vw, 8rem);
	min-height: 590px;
	padding-top: clamp(4rem, 8vw, 7rem);
	padding-bottom: clamp(4rem, 8vw, 7rem);
}

.about-author-intro__copy {
	max-width: 38rem;
}

.about-author-intro .script-title {
	margin: 1rem 0 1.25rem;
	font-size: clamp(4.5rem, 9vw, 7.5rem);
	line-height: .9;
}

.about-author-intro__lead {
	max-width: 28rem;
	margin-bottom: 2rem;
	color: #fff4dc;
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	line-height: 1.55;
}

.about-author-intro__portrait {
	max-width: 25rem;
	margin: 0 auto;
	transform: rotate(3deg);
}

.about-author-portrait-frame {
	padding: 1rem 1rem 1.25rem;
	background: #fffaec;
	box-shadow: 0 14px 32px #00000040;
}

.about-author-portrait-frame > img {
	width: 100%;
	aspect-ratio: 4 / 4.8;
	object-fit: cover;
	object-position: center 31%;
}

.about-author-portrait-frame figcaption {
	padding-top: .9rem;
	color: #6c582f;
	font-family: var(--font-script);
	font-size: 1.5rem;
	line-height: 1.05;
}

.about-author-portrait-frame figcaption svg {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--gold);
	vertical-align: middle;
}

.about-author-bio {
	padding: clamp(5rem, 10vw, 8rem) 0;
}

.about-author-bio__grid {
	display: grid;
	grid-template-columns: minmax(13rem, .8fr) minmax(0, 1.2fr);
	gap: 2.5rem clamp(2rem, 8vw, 8rem);
	align-items: start;
}

.about-author-bio__heading .script-title {
	margin-top: 1rem;
	font-size: clamp(3.25rem, 6vw, 5rem);
}

.about-author-bio__copy {
	max-width: 41rem;
	font-size: 1.05rem;
	line-height: 1.75;
}

.about-author-bio__copy p + p {
	margin-top: 1rem;
}

.about-author-bio__quote {
	grid-column: 1 / -1;
	max-width: 52rem;
	margin: 1rem auto 0;
	padding: 1.75rem 2rem;
	border-left: 4px solid var(--gold);
	background: #ffffff80;
}

.about-author-bio__quote p {
	color: var(--ink);
	font-family: var(--font-script);
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	line-height: 1.15;
}

.about-author-bio__quote cite {
	display: block;
	margin-top: .75rem;
	color: #6c582f;
	font-size: .9rem;
	font-style: normal;
	font-weight: 600;
}

.about-author-book {
	padding: clamp(5rem, 10vw, 8rem) 0;
	background: #f0e4cc;
	color: var(--ink);
}

.about-author-book__grid {
	display: grid;
	grid-template-columns: minmax(18rem, .95fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(2.5rem, 9vw, 9rem);
}

.about-author-book__art {
	max-width: 34rem;
	margin: 0 auto;
	width: 100%;
}

.about-author-book__art a {
	display: block;
	transition: transform .2s;
}

.about-author-book__art a:hover {
	transform: rotate(-1deg) translateY(-4px);
}

.about-author-book-window {
	filter: saturate(1.1) brightness(1.015);
}

.about-author-book__copy {
	max-width: 34rem;
}

.about-author-book__copy .script-title {
	margin: 1rem 0 1.25rem;
	font-size: clamp(3.5rem, 6vw, 5.5rem);
}

.about-author-book__copy > p:not(.eyebrow) {
	margin-bottom: 1.75rem;
	font-size: 1.05rem;
	line-height: 1.75;
}

.about-author-cta {
	padding: clamp(5rem, 10vw, 8rem) 0;
	background:
		radial-gradient(at 20% 30%, #7c550d25, transparent 45%),
		linear-gradient(115deg, #00352a, #00281f 75%);
	text-align: center;
}

/* Shared testimonial slider: card styles remain in main.css. */
.testimonials-slider {
	position: relative;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.testimonials-slider__viewport {
	min-width: 0;
	flex: 1;
	overflow: hidden;
	padding: 0 .15rem .5rem;
}

.testimonials-slider__track {
	display: flex;
	gap: 24px;
	transition: transform .35s ease;
	will-change: transform;
}

.testimonials-slider__track .reader-letter {
	flex: 0 0 calc((100% - 48px) / 3);
	min-width: 0;
}

.testimonials-slider__arrow {
	display: grid;
	flex: 0 0 2.75rem;
	width: 2.75rem;
	height: 2.75rem;
	place-items: center;
	border: 1px solid #b78023;
	border-radius: 50%;
	color: #b78023;
	cursor: pointer;
}

.testimonials-slider__arrow svg {
	width: 1.15rem;
	height: 1.15rem;
}

.testimonials-slider__arrow:hover:not(:disabled) {
	background: #b7802314;
}

.testimonials-slider__arrow:focus-visible {
	outline: var(--ym-focus-ring);
	outline-offset: .2rem;
}

.testimonials-slider__arrow:disabled {
	cursor: default;
	opacity: .35;
}

.testimonials-section--book,
.testimonials-section--author {
	padding-top: clamp(4rem, 8vw, 6rem);
	padding-bottom: clamp(4rem, 8vw, 6rem);
}

.testimonials-section--book {
	background: #f0e4cc;
}

.testimonials-section--author {
	background: var(--paper);
}

@media (max-width: 1023px) {
	.testimonials-slider__track .reader-letter {
		flex-basis: calc((100% - 24px) / 2);
	}
}

@media (max-width: 767px) {
	.testimonials-slider {
		gap: .5rem;
	}

	.testimonials-slider__track .reader-letter {
		flex-basis: 100%;
	}

	.testimonials-slider__arrow {
		flex-basis: 2.4rem;
		width: 2.4rem;
		height: 2.4rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.testimonials-slider__track {
		transition: none;
	}
}

.about-author-cta__inner {
	max-width: 43rem;
}

.about-author-cta .eyebrow {
	justify-content: center;
}

.about-author-cta .script-title {
	margin: 1rem 0;
	font-size: clamp(3.5rem, 7vw, 6rem);
}

.about-author-cta p:not(.eyebrow) {
	max-width: 32rem;
	margin: 0 auto 1.75rem;
	color: #fff4dc;
	font-size: 1.05rem;
}

@media (max-width: 767px) {
	.about-author-intro__grid,
	.about-author-bio__grid,
	.about-author-book__grid {
		grid-template-columns: 1fr;
	}

	.about-author-intro,
	.about-book-hero,
	.contact-author-intro,
	.pod-hero,
	.blog-page__hero,
	.blog-single__header {
		background-position: 62% center;
	}

	.about-author-intro__grid {
		gap: 3rem;
	}

	.about-author-intro__portrait {
		width: min(100%, 22rem);
	}

	.about-author-bio__quote {
		grid-column: auto;
	}

	.about-author-book__copy {
		order: -1;
	}
}

/* Contact Author */
.contact-author-page {
	overflow: hidden;
}

.contact-author-intro__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(18rem, .8fr);
	align-items: center;
	gap: clamp(2rem, 8vw, 8rem);
	min-height: 520px;
	padding-top: clamp(4rem, 8vw, 7rem);
	padding-bottom: clamp(4rem, 8vw, 7rem);
}

.contact-author-intro__copy {
	max-width: 38rem;
}

.contact-author-intro__copy .script-title {
	margin: 1rem 0 1.5rem;
	font-size: clamp(3.75rem, 7vw, 6.5rem);
	line-height: .92;
}

.contact-author-intro__copy > p:not(.eyebrow) {
	max-width: 34rem;
	color: #fff4dc;
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	line-height: 1.65;
}

.contact-author-details {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem 2.5rem;
	margin-top: 2rem;
}

.contact-author-details a {
	display: inline-flex;
	align-items: flex-start;
	gap: .75rem;
	color: #fff4dc;
}

.contact-author-details a > svg {
	margin-top: .2rem;
	color: var(--gold);
}

.contact-author-details span {
	display: flex;
	flex-direction: column;
	gap: .15rem;
}

.contact-author-details strong {
	color: #d9b96d;
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.contact-author-intro__art {
	max-width: 33rem;
	margin: 0 auto;
	padding: 1.25rem;
	border: 1px solid #d9b96d66;
	border-radius: 1rem;
	background: #fff4dc0d;
	transform: rotate(3deg);
}

.contact-author-intro__art img {
	width: 100%;
	border-radius: .5rem;
}

.contact-author-form-section {
	padding: clamp(5rem, 10vw, 8rem) 0;
}

.contact-author-form-grid {
	display: grid;
	grid-template-columns: minmax(13rem, .75fr) minmax(0, 1.25fr);
	align-items: start;
	gap: 2rem clamp(2rem, 8vw, 8rem);
}

.contact-author-form-intro {
	max-width: 23rem;
}

.contact-author-form-intro .script-title {
	margin: 1rem 0 1.25rem;
	font-size: clamp(3.25rem, 6vw, 5rem);
}

.contact-author-form-intro > p:not(.eyebrow) {
	font-size: 1.05rem;
	line-height: 1.75;
}

.contact-author-form-wrap {
	max-width: 46rem;
	padding: clamp(1.5rem, 4vw, 2.75rem);
	border: 1px solid #b9985d55;
	border-radius: 1rem;
	background: #fffaf0aa;
	box-shadow: 0 1rem 2.5rem #55371912;
}

.contact-author-form {
	position: relative;
}

.contact-form-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.contact-form-field {
	margin: 0 0 1rem;
}

.contact-form-field label {
	display: block;
	margin-bottom: .4rem;
	color: var(--ink);
	font-size: .85rem;
	font-weight: 600;
}

.contact-form-field input,
.contact-form-field textarea {
	width: 100%;
	padding: .8rem .9rem;
	border: 1px solid #b9985d99;
	border-radius: .5rem;
	background: #fffdf8;
	color: var(--ink);
	font-family: var(--font-sans);
	font-size: 1rem;
	line-height: 1.45;
}

.contact-form-field textarea {
	min-height: 9rem;
	resize: vertical;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
	border-color: var(--green);
	outline: 3px solid #5a7a4a33;
}

.contact-form-field--honeypot {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

.contact-form-help {
	margin: .25rem 0 1.25rem;
	color: #6c582f;
	font-size: .82rem;
	line-height: 1.5;
}

.contact-form-notice {
	margin-bottom: 1.25rem;
	padding: 1rem 1.1rem;
	border-radius: .5rem;
	font-size: .92rem;
	line-height: 1.5;
}

.contact-form-notice p {
	margin: 0;
	font-weight: 600;
}

.contact-form-notice ul {
	margin: .4rem 0 0 1.2rem;
}

.contact-form-notice--success {
	border: 1px solid #5a7a4a66;
	background: #5a7a4a18;
	color: #294d31;
}

.contact-form-notice--error {
	border: 1px solid #a65d4a66;
	background: #a65d4a14;
	color: #70382d;
}

@media (max-width: 767px) {
	.contact-author-intro__grid,
	.contact-author-form-grid {
		grid-template-columns: 1fr;
	}

	.contact-author-intro__grid {
		gap: 3rem;
	}

	.contact-author-intro__art {
		width: min(100%, 30rem);
	}

	.contact-author-form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.contact-author-form .button {
		width: 100%;
	}
}

/* About Book */
.about-book-page {
	overflow: hidden;
}

.about-book-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(20rem, 1.1fr);
	align-items: center;
	gap: clamp(2rem, 8vw, 8rem);
	min-height: 610px;
	padding-top: clamp(4rem, 8vw, 7rem);
	padding-bottom: clamp(4rem, 8vw, 7rem);
}

.about-book-hero__copy {
	max-width: 35rem;
}

.about-book-hero__copy .script-title {
	margin: 1rem 0 1.25rem;
	font-size: clamp(4rem, 8vw, 7rem);
	line-height: .9;
}

.about-book-hero__lead {
	max-width: 31rem;
	margin-bottom: .75rem;
	color: #fff4dc;
	font-size: clamp(1.25rem, 2.4vw, 1.6rem);
	line-height: 1.45;
}

.about-book-hero__copy > p:not(.eyebrow) + p {
	margin-bottom: 2rem;
	color: #d3d8c5;
}

.about-book-hero__art {
	max-width: 42rem;
	margin: 0 auto;
}

.about-book-hero__art img {
	width: 100%;
	filter: drop-shadow(0 1.2rem 1.5rem #00000045);
}

.about-book-hero__art figcaption {
	margin-top: -.5rem;
	color: #d9b96d;
	font-family: var(--font-script);
	font-size: clamp(1.35rem, 2.5vw, 1.8rem);
	text-align: center;
	transform: rotate(-2deg);
}

.about-book-story {
	padding: clamp(5rem, 10vw, 8rem) 0;
}

.about-book-story__grid {
	display: grid;
	grid-template-columns: minmax(14rem, .8fr) minmax(0, 1.2fr);
	align-items: start;
	gap: 2rem clamp(2rem, 8vw, 8rem);
}

.about-book-story__heading .script-title {
	margin-top: 1rem;
	font-size: clamp(3.25rem, 6vw, 5.25rem);
}

.about-book-story__copy {
	max-width: 43rem;
	font-size: 1.05rem;
	line-height: 1.75;
}

.about-book-story__copy p + p {
	margin-top: 1rem;
}

.about-book-story__copy strong {
	color: #7b5a16;
	font-family: var(--font-script);
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.2;
}

.about-book-readers {
	padding: clamp(5rem, 9vw, 7rem) 0;
	background: #00352a;
}

.about-book-section-heading {
	max-width: 38rem;
	margin: 0 auto 2.5rem;
	text-align: center;
}

.about-book-section-heading .eyebrow {
	justify-content: center;
}

.about-book-section-heading .script-title {
	margin-top: 1rem;
	font-size: clamp(3.25rem, 6vw, 5rem);
}

.about-book-testimonials {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.about-book-testimonial {
	min-height: 17rem;
	padding: 1.75rem;
	border: 1px solid #d9b96d55;
	border-radius: 1rem;
	background: #00281f;
}

.about-book-stars {
	margin-bottom: 1rem;
	color: var(--gold);
	letter-spacing: .18em;
}

.about-book-testimonial p {
	color: #fff4dc;
	font-size: .98rem;
	line-height: 1.7;
}

.about-book-testimonial cite {
	display: flex;
	flex-direction: column;
	gap: .2rem;
	margin-top: 1.4rem;
	color: #d3d8c5;
	font-size: .85rem;
	font-style: normal;
}

.about-book-testimonial cite strong {
	color: #fff4dc;
	font-size: .95rem;
}

.about-book-cta {
	padding: clamp(5rem, 9vw, 7rem) 0;
	background: #f0e4cc;
	color: var(--ink);
	text-align: center;
}

.about-book-cta__inner {
	max-width: 48rem;
}

.about-book-cta .eyebrow {
	justify-content: center;
}

.about-book-cta .script-title {
	margin: 1rem 0 2rem;
	font-size: clamp(3.5rem, 7vw, 6rem);
}

.about-book-cta .button-row {
	justify-content: center;
}

/* Editorial FAQs */
.editorial-faq {
	padding: clamp(5rem, 10vw, 8rem) 0;
	color: var(--ink);
}

.editorial-faq--book {
	background: #f0e4cc;
}

.editorial-faq--book .container {
	display: grid;
	grid-template-columns: minmax(13rem, .72fr) minmax(0, 1.28fr);
	align-items: start;
	gap: clamp(2rem, 7vw, 7rem);
}

.editorial-faq__intro {
	max-width: 25rem;
}

.editorial-faq__intro .script-title {
	margin: 1rem 0 1.25rem;
	font-size: clamp(3rem, 5vw, 4.8rem);
	line-height: .95;
}

.editorial-faq__intro > p:last-child {
	font-size: 1.02rem;
	line-height: 1.7;
}

.editorial-faq__list {
	border-top: 1px solid #b9985d88;
}

.editorial-faq__item {
	border-bottom: 1px solid #b9985d88;
}

.editorial-faq__question {
	margin: 0;
}

.editorial-faq__question button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	width: 100%;
	min-height: 4.5rem;
	padding: 1rem 0;
	color: var(--ink);
	cursor: pointer;
	text-align: left;
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1.4;
}

.editorial-faq__question button:focus-visible {
	outline: var(--ym-focus-ring);
	outline-offset: .35rem;
}

.editorial-faq__indicator {
	position: relative;
	flex: 0 0 1.25rem;
	width: 1.25rem;
	height: 1.25rem;
	border: 1px solid currentColor;
	border-radius: 50%;
	color: var(--green);
}

.editorial-faq__indicator::before,
.editorial-faq__indicator::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: .55rem;
	height: 1px;
	background: currentColor;
	transform: translate(-50%, -50%);
	transition: transform .2s ease;
}

.editorial-faq__indicator::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.editorial-faq__question button[aria-expanded="true"] .editorial-faq__indicator::after {
	transform: translate(-50%, -50%) rotate(0);
}

.editorial-faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height .22s ease, opacity .22s ease;
	opacity: 0;
}

.editorial-faq__answer-inner {
	padding: 0 2.5rem 1.35rem 0;
}

.editorial-faq__answer p {
	margin: 0;
	color: #6c582f;
	line-height: 1.7;
}

.editorial-faq--author {
	background: var(--paper);
	text-align: center;
}

.editorial-faq--author .container {
	max-width: 56rem;
}

.editorial-faq--author .editorial-faq__intro {
	max-width: 38rem;
	margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.editorial-faq--author .editorial-faq__intro .eyebrow {
	justify-content: center;
}

.editorial-faq--author .editorial-faq__intro .script-title {
	font-size: clamp(3.25rem, 6vw, 5.4rem);
}

.editorial-faq--author .editorial-faq__list {
	max-width: 45rem;
	margin: 0 auto;
	text-align: left;
	border-top: 0;
}

.editorial-faq--author .editorial-faq__item {
	border: 1px solid #b9985d66;
	border-radius: .5rem;
	margin-bottom: .75rem;
	background: #fffaf0aa;
}

.editorial-faq--author .editorial-faq__question button {
	min-height: 4.25rem;
	padding: 1rem 1.25rem;
}

.editorial-faq--author .editorial-faq__indicator {
	border: 0;
	border-radius: 0;
	color: var(--gold);
}

.editorial-faq--author .editorial-faq__answer-inner {
	padding: 0 1.25rem 1.35rem;
}

.editorial-faq--author .editorial-faq__answer p {
	color: #6c582f;
}

@media (prefers-reduced-motion: reduce) {
	.editorial-faq__answer,
	.editorial-faq__indicator::before,
	.editorial-faq__indicator::after {
		transition: none;
	}
}

@media (max-width: 767px) {
	.about-book-hero__grid,
	.about-book-story__grid {
		grid-template-columns: 1fr;
	}

	.about-book-hero__grid {
		gap: 3rem;
	}

	.about-book-hero__art {
		width: min(100%, 30rem);
	}

	.about-book-testimonials {
		grid-template-columns: 1fr;
	}

	.about-book-testimonial {
		min-height: auto;
	}

	.about-book-cta .button {
		width: 100%;
	}

	.editorial-faq--book .container {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.editorial-faq__intro {
		max-width: 34rem;
	}

	.editorial-faq__question button {
		min-height: 4.75rem;
	}
}
