:root {
	--color-primary: #487185;
	--color-accent: #e6b87d;
	--color-text: #333333;
	--color-muted: #777777;
	--color-border: #e5e5e5;
	--color-surface: #ffffff;
	--color-surface-alt: #f7f5f2;
	--color-tint: #edf3f5;
	--shadow-soft: 0 18px 48px rgba(20, 43, 53, 0.08);
	--radius-s: 14px;
	--radius-m: 22px;
	--radius-l: 34px;
	--shell: 1180px;
	--shell-narrow: 820px;
	--transition: 180ms ease;
	--font-sans: "Plus Jakarta Sans", "Segoe UI", "Helvetica Neue", Arial, "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
	--font-serif: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", "Hiragino Mincho ProN", "Yu Mincho", serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-sans);
	font-weight: 400;
	color: var(--color-text);
	background:
		radial-gradient(circle at 12% 18%, rgba(230, 184, 125, 0.18), transparent 20%),
		radial-gradient(circle at 88% 8%, rgba(72, 113, 133, 0.13), transparent 22%),
		linear-gradient(180deg, #ffffff 0%, #fafaf8 52%, #f5f6f4 100%);
	line-height: 1.7;
	letter-spacing: -0.012em;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.has-open-cart-drawer {
	overflow: hidden;
}

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

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color var(--transition), border-color var(--transition), opacity var(--transition), transform var(--transition);
}

a:hover,
a:focus-visible {
	color: var(--color-text);
}

p {
	margin: 0 0 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 1rem;
	font-family: var(--font-serif);
	font-weight: 600;
	line-height: 1.08;
	letter-spacing: -0.045em;
	color: var(--color-text);
}

h1 {
	font-size: clamp(2.8rem, 6vw, 5rem);
}

h2 {
	font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
	font-size: clamp(1.35rem, 2vw, 1.8rem);
}

ul,
ol {
	padding-left: 1.2rem;
}

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

input,
select,
textarea {
	width: 100%;
	padding: 0.9rem 1rem;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	background: var(--color-surface);
	color: var(--color-text);
}

textarea {
	min-height: 140px;
	border-radius: var(--radius-s);
	resize: vertical;
}

select:focus,
textarea:focus,
input:focus,
button:focus-visible,
a:focus-visible {
	outline: 2px solid rgba(72, 113, 133, 0.35);
	outline-offset: 2px;
}

.shell {
	width: min(calc(100% - 2rem), var(--shell));
	margin-inline: auto;
}

.shell--narrow {
	width: min(calc(100% - 2rem), var(--shell-narrow));
}

.site-main {
	overflow: clip;
}

.section,
.page-intro,
.hero-section {
	padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}

.section-heading {
	position: relative;
	display: grid;
	gap: 1.05rem;
	max-width: 760px;
	margin-bottom: 2rem;
	padding: 0 3.5rem 0 1.4rem;
}

.section-heading--compact {
	margin-bottom: 1.5rem;
}

.section-heading::before {
	content: "";
	position: absolute;
	top: 0.35rem;
	bottom: 0.35rem;
	left: 0;
	width: 2px;
	border-radius: 999px;
	background: linear-gradient(180deg, var(--color-primary), var(--color-accent));
}

.section-heading::after {
	content: "";
	display: block;
	width: 96px;
	height: 2px;
	margin-top: 0.35rem;
	background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.section-heading h2 {
	position: relative;
	margin-bottom: 0;
	padding-right: 1.6rem;
}

.section-heading h2::after {
	content: "";
	position: absolute;
	top: 0.42em;
	right: 0;
	width: 0.48rem;
	height: 0.48rem;
	border-radius: 50%;
	background: var(--color-accent);
	box-shadow: 0 0 0 6px rgba(230, 184, 125, 0.14);
}

.section-heading__text,
.page-intro__text,
.hero-section__text {
	color: var(--color-muted);
	font-size: 1.05rem;
}

.section-heading__text {
	max-width: 58ch;
}

.section-heading__eyebrow,
.hero-section__eyebrow,
.newsletter-box__eyebrow {
	margin: 0;
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	width: fit-content;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-primary);
}

.section-heading__eyebrow::before,
.hero-section__eyebrow::before,
.newsletter-box__eyebrow::before {
	content: "";
	width: 2.9rem;
	height: 1px;
	background: linear-gradient(90deg, rgba(72, 113, 133, 0.85), rgba(230, 184, 125, 0.7));
}

.section-heading--home {
	gap: 0.8rem;
	max-width: 840px;
	padding: 0;
}

.section-heading--home::before,
.section-heading--home::after,
.section-heading--home h2::after {
	display: none;
}

.section-heading--home h2 {
	margin-bottom: 0;
	padding: 0 0 0.85rem;
}

.section-heading--home h2::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: clamp(5rem, 18vw, 9rem);
	height: 1px;
	background: linear-gradient(90deg, rgba(72, 113, 133, 0.58), rgba(230, 184, 125, 0.48), transparent);
}

.section-heading--home .section-heading__text {
	max-width: 56ch;
}

.eyebrow,
.entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-primary);
}

.button,
.single_add_to_cart_button,
.product-summary__purchase .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0.95rem 1.6rem;
	border: 1px solid transparent;
	border-radius: 999px;
	background: var(--color-primary);
	color: #ffffff;
	font-weight: 700;
	cursor: pointer;
}

.button:hover,
.button:focus-visible,
.single_add_to_cart_button:hover,
.single_add_to_cart_button:focus-visible {
	background: #395a6b;
	color: #ffffff;
	transform: translateY(-1px);
}

.button--ghost {
	background: transparent;
	border-color: rgba(72, 113, 133, 0.22);
	color: var(--color-primary);
}

.button--ghost:hover,
.button--ghost:focus-visible {
	background: rgba(72, 113, 133, 0.08);
	color: var(--color-primary);
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-weight: 700;
}

.text-link::after {
	content: "\2192";
}

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	border-bottom: 1px solid rgba(229, 229, 229, 0.65);
	background: rgba(255, 255, 255, 0.84);
	backdrop-filter: blur(12px);
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto auto auto;
	align-items: center;
	gap: 1rem 2rem;
	min-height: 86px;
	padding: 0.8rem 0;
}

.site-branding__link,
.site-footer__title {
	display: inline-flex;
	align-items: center;
	gap: 0.9rem;
	color: var(--color-text);
}

.site-branding__title {
	font-size: 1.1rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.site-logo {
	max-height: 54px;
	width: auto;
}

.menu,
.products,
.footer-link-list,
.sidebar-link-list,
.breadcrumbs__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.menu--primary,
.menu--footer {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
}

.menu--primary {
	align-items: center;
	gap: 0.35rem;
	padding: 0.4rem;
	border: 1px solid rgba(72, 113, 133, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.62);
	box-shadow: 0 16px 36px rgba(20, 43, 53, 0.04);
}

.menu--primary a,
.menu--footer a {
	color: var(--color-text);
	font-weight: 600;
}

.menu--primary a {
	display: inline-flex;
	align-items: center;
	padding: 0.55rem 0.75rem;
	border-radius: 999px;
	font-size: 0.82rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.menu--primary a:hover,
.menu--primary a:focus-visible {
	background: rgba(72, 113, 133, 0.08);
	color: var(--color-primary);
}

.site-navigation {
	justify-self: end;
}

.site-header__utilities {
	display: inline-flex;
	align-items: center;
	justify-self: end;
	gap: 0.65rem;
}

.site-language-switcher {
	position: relative;
	display: inline-flex;
	z-index: 35;
}

.site-language-switcher__trigger {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	min-height: 3rem;
	padding: 0.25rem 2.2rem 0.25rem 0.85rem;
	border: 1px solid rgba(72, 113, 133, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 12px 28px rgba(18, 35, 44, 0.04);
	color: var(--color-primary);
	isolation: isolate;
	cursor: pointer;
}

.site-language-switcher__trigger:hover,
.site-language-switcher__trigger:focus-visible {
	background: rgba(255, 255, 255, 0.9);
	color: var(--color-primary);
}

.site-language-switcher__trigger::after {
	content: "";
	position: absolute;
	right: 0.95rem;
	top: 50%;
	width: 0.45rem;
	height: 0.45rem;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-60%) rotate(45deg);
	opacity: 0.7;
	pointer-events: none;
}

.site-language-switcher__globe {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1rem;
	height: 1rem;
	color: var(--color-primary);
	pointer-events: none;
}

.site-language-switcher__globe svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.45;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.site-language-switcher__code {
	position: relative;
	z-index: 1;
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-primary);
	pointer-events: none;
}

.site-language-switcher__dropdown {
	position: absolute;
	top: calc(100% + 0.6rem);
	right: 0;
	min-width: 12rem;
	padding: 0.45rem;
	border: 1px solid rgba(72, 113, 133, 0.12);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 24px 48px rgba(18, 35, 44, 0.14);
	backdrop-filter: blur(18px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-0.35rem);
	transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.site-language-switcher.is-open .site-language-switcher__dropdown {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.site-language-switcher__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.15rem;
}

.site-language-switcher__item {
	margin: 0;
}

.site-language-switcher__dropdown a[data-gt-lang] {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.7rem 0.8rem;
	border-radius: 14px;
	color: rgba(31, 37, 41, 0.9) !important;
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: none;
	text-decoration: none;
}

.site-language-switcher__dropdown a[data-gt-lang]:hover,
.site-language-switcher__dropdown a[data-gt-lang]:focus-visible {
	background: rgba(72, 113, 133, 0.08);
	color: var(--color-primary) !important;
}

.site-language-switcher__dropdown a[data-gt-lang].gt-current-lang {
	background: rgba(72, 113, 133, 0.08);
	color: var(--color-primary) !important;
}

.site-language-switcher__dropdown a[data-gt-lang] img,
.site-language-switcher__dropdown a[data-gt-lang] .flag {
	flex: 0 0 auto;
	width: 1.15rem;
	height: 1.15rem;
	border-radius: 999px;
}

.site-language-switcher__dropdown a[data-gt-lang] span {
	display: inline-flex;
	align-items: center;
}

.site-cart-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	padding: 0;
	border: 1px solid rgba(72, 113, 133, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 12px 28px rgba(18, 35, 44, 0.04);
	color: var(--color-primary);
	cursor: pointer;
}

.site-cart-button:hover,
.site-cart-button:focus-visible {
	background: rgba(255, 255, 255, 0.9);
	color: var(--color-primary);
}

.site-cart-button__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.15rem;
	height: 1.15rem;
}

.site-cart-button__icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.site-cart-button__count {
	position: absolute;
	top: -0.22rem;
	right: -0.1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.25rem;
	height: 1.25rem;
	padding: 0 0.28rem;
	border-radius: 999px;
	background: linear-gradient(180deg, var(--color-primary) 0%, #395a6b 100%);
	color: #ffffff;
	font-size: 0.65rem;
	font-weight: 800;
	line-height: 1;
	box-shadow: 0 10px 18px rgba(20, 43, 53, 0.18);
}

.site-cart-button.is-empty .site-cart-button__count {
	background: rgba(72, 113, 133, 0.14);
	color: var(--color-primary);
	box-shadow: none;
}

.site-cart-layer {
	position: fixed;
	inset: 0;
	z-index: 80;
	pointer-events: none;
}

.site-cart-layer__backdrop {
	position: absolute;
	inset: 0;
	border: 0;
	background: rgba(18, 28, 34, 0.36);
	backdrop-filter: blur(8px);
	opacity: 0;
	transition: opacity var(--transition);
}

.site-cart-drawer {
	position: absolute;
	top: 0;
	right: 0;
	display: grid;
	grid-template-rows: auto minmax(0, 1fr);
	width: min(100%, 27rem);
	height: 100%;
	min-height: 0;
	padding: 1.15rem;
	background: linear-gradient(180deg, rgba(250, 250, 249, 0.98), rgba(244, 247, 248, 0.98));
	box-shadow: -24px 0 60px rgba(16, 30, 37, 0.16);
	transform: translateX(100%);
	transition: transform 220ms ease;
}

.site-cart-layer.is-open {
	pointer-events: auto;
}

.site-cart-layer.is-open .site-cart-layer__backdrop {
	opacity: 1;
}

.site-cart-layer.is-open .site-cart-drawer {
	transform: translateX(0);
}

.site-cart-drawer__header {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.2rem 0 1rem;
	border-bottom: 1px solid rgba(72, 113, 133, 0.12);
}

.site-cart-drawer__heading {
	display: grid;
	gap: 0.45rem;
}

.site-cart-drawer__header h2 {
	margin: 0;
	font-size: 1.8rem;
	line-height: 1;
}

.site-cart-drawer__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.6rem;
	height: 2.6rem;
	padding: 0;
	border: 1px solid rgba(72, 113, 133, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
	color: var(--color-primary);
	cursor: pointer;
}

.site-cart-drawer__close span {
	font-size: 1.45rem;
	line-height: 1;
}

.site-cart-drawer__content {
	display: grid;
	grid-template-rows: auto minmax(0, 1fr) auto auto;
	gap: 0.85rem;
	height: 100%;
	min-height: 0;
	overflow: hidden;
	padding-top: 1rem;
}

.site-cart-drawer__summary-top {
	display: grid;
	gap: 0.4rem;
}

.site-cart-drawer__count {
	margin: 0;
	color: var(--color-muted);
	font-size: 0.96rem;
}

.site-cart-drawer__items {
	display: grid;
	align-content: start;
	gap: 0.6rem;
	min-height: 0;
	overscroll-behavior: contain;
	overflow-y: auto;
	padding-right: 0.35rem;
	scrollbar-gutter: stable;
}

.site-cart-item {
	display: grid;
	grid-template-columns: 68px minmax(0, 1fr);
	gap: 0.7rem;
	padding: 0.65rem;
	border: 1px solid rgba(72, 113, 133, 0.1);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.84);
	box-shadow: 0 10px 22px rgba(18, 35, 44, 0.045);
}

.site-cart-item__media a,
.site-cart-item__media img,
.site-cart-item__media span {
	display: block;
	width: 100%;
}

.site-cart-item__media img {
	aspect-ratio: 1 / 1;
	border-radius: 13px;
	object-fit: cover;
}

.site-cart-item__body {
	display: grid;
	gap: 0.55rem;
	align-content: start;
}

.site-cart-item__top {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 0.75rem;
}

.site-cart-item__title {
	margin: 0;
	flex: 1 1 auto;
	min-width: 0;
	display: -webkit-box;
	overflow: hidden;
	font-size: 0.92rem;
	line-height: 1.18;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.site-cart-item__title a {
	color: var(--color-text);
}

.site-cart-item__remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 1.85rem;
	height: 1.85rem;
	padding: 0;
	border: 1px solid rgba(72, 113, 133, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.86);
	color: var(--color-primary);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
	cursor: pointer;
	transition: background var(--transition), border-color var(--transition), color var(--transition), opacity var(--transition);
}

.site-cart-item__remove:hover,
.site-cart-item__remove:focus-visible {
	background: rgba(72, 113, 133, 0.08);
	border-color: rgba(72, 113, 133, 0.22);
	color: var(--color-primary);
}

.site-cart-item__remove.is-loading {
	opacity: 0.55;
	cursor: progress;
}

.site-cart-item__remove span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.18rem;
	line-height: 1;
	transform: translateY(-0.03em);
}

.site-cart-item__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.6rem;
	color: var(--color-muted);
	font-size: 0.82rem;
}

.site-cart-item__price {
	font-weight: 700;
	color: var(--color-primary);
}

.site-cart-drawer__footer {
	display: grid;
	gap: 0.75rem;
	padding-top: 0.75rem;
	border-top: 1px solid rgba(72, 113, 133, 0.12);
}

.site-cart-drawer__totals {
	display: grid;
	gap: 0.4rem;
}

.site-cart-drawer__total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.site-cart-drawer__total--shipping span,
.site-cart-drawer__total--shipping strong {
	font-size: 0.9rem;
}

.site-cart-drawer__total--estimated {
	margin-top: 0.15rem;
	padding-top: 0.55rem;
	border-top: 1px solid rgba(72, 113, 133, 0.1);
}

.site-cart-drawer__total span {
	color: var(--color-muted);
	font-size: 0.92rem;
}

.site-cart-drawer__total strong {
	font-size: 1.18rem;
	color: var(--color-text);
}

.site-cart-drawer__actions {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 0.65rem;
}

.site-cart-drawer__actions .button {
	min-width: 0;
	padding-right: 0.85rem;
	padding-left: 0.85rem;
}

@media (max-width: 440px) {
	.site-cart-drawer__actions {
		grid-template-columns: 1fr;
	}
}

.site-cart-drawer__shipping {
	min-width: 0;
	padding-top: 0.1rem;
}

.gs-market-shipping-estimator {
	display: grid;
	gap: 0.75rem;
	min-width: 0;
	letter-spacing: 0;
}

.gs-market-shipping-estimator.is-loading {
	opacity: 0.72;
}

.gs-market-shipping-estimator__header {
	display: grid;
	align-items: start;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 0.14rem 0.55rem;
	min-width: 0;
}

.gs-market-shipping-estimator__header .eyebrow {
	grid-column: 1;
}

.gs-market-shipping-estimator__header h3 {
	grid-column: 1;
	margin: 0;
	min-width: 0;
	font-family: var(--font-sans);
	font-size: 0.98rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0;
}

.gs-market-shipping-estimator__edit {
	grid-column: 2;
	grid-row: 1 / span 2;
	align-self: center;
	display: none;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	min-height: 1.85rem;
	padding: 0.25rem 0.65rem;
	border: 1px solid rgba(72, 113, 133, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
	color: var(--color-primary);
	font-size: 0.76rem;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
}

.gs-market-shipping-estimator.has-selection .gs-market-shipping-estimator__edit {
	display: inline-flex;
}

.gs-market-shipping-estimator.is-editing .gs-market-shipping-estimator__edit {
	display: none;
}

.gs-market-shipping-estimator.has-selection:not(.is-editing) .gs-market-shipping-estimator__controls {
	display: none;
}

.gs-market-shipping-estimator__controls {
	display: grid;
	gap: 0.65rem;
}

.gs-market-shipping-estimator__field {
	display: grid;
	gap: 0.35rem;
}

.gs-market-shipping-estimator__field span {
	color: var(--color-muted);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.gs-market-shipping-estimator__field select {
	min-height: 2.65rem;
	padding: 0.7rem 0.85rem;
	border-radius: 16px;
	font-size: 0.9rem;
}

.gs-market-shipping-estimator__methods {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.45rem;
}

.gs-market-shipping-estimator__methods label {
	position: relative;
	display: block;
	min-width: 0;
	cursor: pointer;
}

.gs-market-shipping-estimator__methods input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.gs-market-shipping-estimator__methods span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 2.45rem;
	padding: 0.55rem 0.7rem;
	border: 1px solid rgba(72, 113, 133, 0.14);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.78);
	color: var(--color-text);
	font-size: 0.86rem;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.gs-market-shipping-estimator__methods input:checked + span {
	border-color: var(--color-primary);
	background: var(--color-primary);
	color: #ffffff;
}

.gs-market-shipping-estimator__methods input:focus-visible + span {
	outline: 2px solid rgba(72, 113, 133, 0.3);
	outline-offset: 2px;
}

.gs-market-shipping-estimator__result {
	min-width: 0;
}

.gs-market-shipping-estimator__placeholder,
.gs-market-shipping-estimator__message,
.gs-market-shipping-estimator__delivery {
	margin: 0;
	color: var(--color-muted);
	font-size: 0.88rem;
	line-height: 1.55;
}

.gs-market-shipping-estimator__quote {
	display: grid;
	gap: 0.65rem;
	padding: 0.8rem;
	border: 1px solid rgba(72, 113, 133, 0.12);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.72);
}

.gs-market-shipping-estimator__quote--compact {
	gap: 0.42rem;
	padding: 0.68rem 0.75rem;
	border-radius: 16px;
}

.gs-market-shipping-estimator__quote--compact .gs-market-shipping-estimator__summary {
	gap: 0.18rem;
}

.gs-market-shipping-estimator__quote--compact .gs-market-shipping-estimator__summary > span {
	font-size: 0.72rem;
}

.gs-market-shipping-estimator__quote--compact .gs-market-shipping-estimator__summary strong {
	font-size: 0.9rem;
}

.gs-market-shipping-estimator__summary {
	display: grid;
	gap: 0.3rem;
}

.gs-market-shipping-estimator__summary > span {
	color: var(--color-muted);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.gs-market-shipping-estimator__summary strong {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.35rem 0.75rem;
	color: var(--color-text);
	font-size: 0.95rem;
	line-height: 1.25;
}

.gs-market-shipping-estimator__progress {
	position: relative;
	overflow: hidden;
	height: 0.5rem;
	border-radius: 999px;
	background: rgba(72, 113, 133, 0.12);
}

.gs-market-shipping-estimator__progress span {
	position: absolute;
	inset: 0 auto 0 0;
	border-radius: inherit;
	background: var(--color-primary);
	transition: width var(--transition);
}

.gs-market-shipping-estimator__delivery {
	display: flex;
	flex-wrap: wrap;
	gap: 0.3rem 0.5rem;
}

.gs-market-shipping-estimator__delivery strong {
	color: var(--color-text);
}

.gsmse-components {
	--gsmse-bg: rgba(255, 255, 255, 0.88);
	--gsmse-text: var(--color-text);
	--gsmse-muted: var(--color-muted);
	--gsmse-line: rgba(72, 113, 133, 0.14);
	--gsmse-accent: var(--color-primary);
	--gsmse-accent-strong: #315f73;
	--gsmse-soft: var(--color-tint);
	letter-spacing: 0;
}

.gsmse-components .gsmse-messages {
	padding-left: 0;
}

.gsmse-components .gsmse-market-badge,
.gsmse-components .gsmse-delivery,
.gsmse-components .gsmse-progress,
.gsmse-components .gsmse-disclaimer {
	border-color: rgba(72, 113, 133, 0.12);
	background: rgba(255, 255, 255, 0.72);
}

.gsmse-components .gsmse-progress__track {
	background: rgba(72, 113, 133, 0.12);
}

.site-cart-drawer__shipping .gsmse-components {
	gap: 0.6rem;
	margin: 0;
	font-size: 0.82rem;
	line-height: 1.45;
}

.site-cart-drawer__shipping .gsmse-market-badge,
.site-cart-drawer__shipping .gsmse-incentive {
	width: 100%;
}

.site-cart-drawer__shipping .gsmse-progress,
.site-cart-drawer__shipping .gsmse-delivery,
.site-cart-drawer__shipping .gsmse-disclaimer {
	padding: 0.65rem;
}

.site-cart-drawer__shipping .gs-market-shipping-estimator {
	gap: 0.5rem;
}

.site-cart-drawer__shipping .gs-market-shipping-estimator__header h3 {
	font-size: 0.9rem;
}

.site-cart-drawer__shipping .gs-market-shipping-estimator.has-selection:not(.is-editing) .gs-market-shipping-estimator__header {
	align-items: center;
}

.site-cart-drawer__shipping .gs-market-shipping-estimator.has-selection:not(.is-editing) .eyebrow {
	display: none;
}

.site-cart-drawer__shipping .gs-market-shipping-estimator__quote {
	padding: 0.7rem;
	border-radius: 16px;
}

.site-cart-drawer__shipping .gs-market-shipping-estimator__placeholder,
.site-cart-drawer__shipping .gs-market-shipping-estimator__message,
.site-cart-drawer__shipping .gs-market-shipping-estimator__delivery {
	font-size: 0.8rem;
}

.site-cart-drawer__empty {
	display: grid;
	gap: 0.95rem;
	align-content: center;
	min-height: 100%;
	padding: 1.4rem 0.3rem 0.5rem;
	text-align: center;
}

.site-cart-drawer__empty h3 {
	margin: 0;
	font-size: 1.5rem;
	line-height: 1.05;
}

.site-cart-drawer__empty p {
	margin: 0;
	color: var(--color-muted);
}

.site-toast-stack {
	position: fixed;
	top: 6.3rem;
	right: 1rem;
	z-index: 95;
	display: grid;
	gap: 0.75rem;
	width: min(100vw - 2rem, 26rem);
	pointer-events: none;
}

.site-toast {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.9rem;
	padding: 1rem 1rem 1rem 0.95rem;
	border: 1px solid rgba(72, 113, 133, 0.12);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 28px 56px rgba(16, 30, 37, 0.14);
	backdrop-filter: blur(16px);
	opacity: 0;
	transform: translateY(-0.45rem);
	transition: opacity var(--transition), transform var(--transition);
	pointer-events: auto;
}

.site-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.site-toast__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 999px;
	background: rgba(72, 113, 133, 0.12);
	color: var(--color-primary);
}

.site-toast__icon svg {
	display: block;
	width: 1rem;
	height: 1rem;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.site-toast__body {
	display: grid;
	gap: 0.28rem;
}

.site-toast__body strong {
	font-size: 0.98rem;
	line-height: 1.2;
	color: var(--color-text);
}

.site-toast__body p {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.5;
	color: var(--color-muted);
}

.site-toast__actions {
	grid-column: 2;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.9rem;
}

.site-toast__link,
.site-toast__dismiss {
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.site-toast__dismiss {
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--color-muted);
	cursor: pointer;
}

.menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 3.1rem;
	height: 3.1rem;
	padding: 0;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	color: var(--color-primary);
	box-shadow: 0 14px 28px rgba(20, 43, 53, 0.08);
	backdrop-filter: blur(12px);
}

.menu-toggle__icon {
	display: grid;
	gap: 0.26rem;
	width: 1.1rem;
}

.menu-toggle__line {
	display: block;
	width: 100%;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transition: transform var(--transition), opacity var(--transition);
	transform-origin: center;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1) {
	transform: translateY(0.39rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) {
	transform: translateY(-0.39rem) rotate(-45deg);
}

.hero-section__grid,
.content-layout,
.product-hero,
.site-footer__grid {
	display: grid;
	gap: 2rem;
}

.hero-section__grid {
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	align-items: center;
	position: relative;
	overflow: hidden;
	padding: clamp(1rem, 2vw, 1.4rem);
	border-radius: var(--radius-l);
	border: 1px solid rgba(72, 113, 133, 0.12);
	background:
		radial-gradient(circle at top left, rgba(230, 184, 125, 0.24), transparent 30%),
		radial-gradient(circle at bottom right, rgba(72, 113, 133, 0.13), transparent 24%),
		linear-gradient(135deg, #f5efe5 0%, #ffffff 48%, #f7fafb 100%);
	box-shadow: var(--shadow-soft);
}

.hero-section__content {
	position: relative;
	display: grid;
	gap: 1rem;
	max-width: 620px;
	padding: clamp(1.8rem, 3vw, 2.7rem);
	border: 1px solid rgba(255, 255, 255, 0.82);
	border-radius: calc(var(--radius-l) - 12px);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.66));
	backdrop-filter: blur(10px);
}

.hero-section__content > * {
	position: relative;
	z-index: 1;
}

.hero-section__content::before {
	content: "";
	position: absolute;
	top: 1rem;
	left: 1rem;
	width: 72px;
	height: 72px;
	border-top: 2px solid rgba(72, 113, 133, 0.2);
	border-left: 2px solid rgba(72, 113, 133, 0.2);
	border-top-left-radius: 18px;
}

.hero-section__content::after {
	content: "";
	position: absolute;
	right: 1.2rem;
	bottom: 1.2rem;
	width: 90px;
	height: 18px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(72, 113, 133, 0.12), rgba(230, 184, 125, 0.38));
}

.hero-section__text {
	max-width: 52ch;
}

.hero-section__media {
	position: relative;
	padding: 1.2rem 1.1rem 1.2rem 2.2rem;
}

.hero-section__media::before {
	content: "";
	position: absolute;
	inset: 1.1rem 0.35rem 1.1rem 0.9rem;
	border-radius: 28px;
	background: linear-gradient(180deg, rgba(72, 113, 133, 0.18), rgba(230, 184, 125, 0.3));
	transform: rotate(-4deg);
}

.hero-section__media::after {
	content: "";
	position: absolute;
	right: 14%;
	bottom: 0.3rem;
	width: 58%;
	height: 34px;
	border-radius: 999px;
	background: rgba(18, 32, 40, 0.18);
	filter: blur(18px);
}

.hero-section__media img {
	position: relative;
	z-index: 1;
	width: 100%;
	border: 8px solid rgba(255, 255, 255, 0.78);
	border-radius: calc(var(--radius-l) - 8px);
	box-shadow: 0 28px 52px rgba(20, 43, 53, 0.14);
	object-fit: cover;
}

.section--featured-books .shell,
.section--catalog .shell {
	position: relative;
}

.section--featured-books,
.section--newsletter,
.section--home-about {
	position: relative;
	overflow: clip;
	isolation: isolate;
}

.section--featured-books .shell,
.section--newsletter .shell,
.section--home-about .shell {
	position: relative;
	z-index: 1;
}

.section--featured-books {
	border-top: 1px solid rgba(72, 113, 133, 0.08);
	border-bottom: 1px solid rgba(72, 113, 133, 0.06);
	background: linear-gradient(180deg, #fcfaf7 0%, #ffffff 100%);
}

.section--featured-books::before {
	display: none;
}

.section--home-about {
	border-top: 1px solid rgba(72, 113, 133, 0.08);
	border-bottom: 1px solid rgba(72, 113, 133, 0.06);
	background: linear-gradient(180deg, #eef1f2 0%, #f4f5f4 100%);
}

.section--home-about::before {
	content: "";
	position: absolute;
	top: 4.25rem;
	right: 7%;
	width: 18rem;
	height: 14rem;
	border: 1px solid rgba(72, 113, 133, 0.08);
	border-radius: 34px;
	background: transparent;
	transform: rotate(-5deg);
}

.section--home-about::after {
	display: none;
}

.section--home-about .shell::before {
	display: none;
}

.section--newsletter {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	background: linear-gradient(180deg, #262b30 0%, #21262b 100%);
}

.section--newsletter::before {
	display: none;
}

.featured-books-stage {
	position: relative;
	padding: clamp(2rem, 4vw, 3rem);
	border: 1px solid rgba(72, 113, 133, 0.08);
	border-radius: 42px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.42)),
		linear-gradient(135deg, rgba(230, 184, 125, 0.14), rgba(72, 113, 133, 0.08));
	box-shadow: 0 32px 78px rgba(20, 43, 53, 0.12);
	backdrop-filter: blur(12px);
}

.featured-books-stage::before {
	content: "";
	position: absolute;
	inset: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.42);
	border-radius: 32px;
	pointer-events: none;
}

.featured-books-stage::after {
	display: none;
}

.section-heading--featured {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem);
	column-gap: clamp(1.8rem, 4vw, 4rem);
	row-gap: 0.8rem;
	align-items: end;
	max-width: none;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-heading--featured .section-heading__eyebrow,
.section-heading--featured h2 {
	grid-column: 1;
}

.section-heading--featured h2 {
	max-width: 10ch;
	padding-bottom: 1.15rem;
	font-size: clamp(2.5rem, 5vw, 4.25rem);
	line-height: 0.96;
}

.section-heading--featured h2::before {
	width: clamp(5rem, 14vw, 7rem);
	background: linear-gradient(90deg, rgba(72, 113, 133, 0.48), rgba(230, 184, 125, 0.34), transparent);
}

.section-heading--featured .section-heading__text {
	grid-column: 2;
	grid-row: 1 / span 2;
	align-self: end;
	max-width: 28ch;
	padding-left: 1.4rem;
	border-left: 1px solid rgba(72, 113, 133, 0.12);
	font-size: 0.98rem;
	line-height: 1.7;
}

.featured-book-grid,
.post-grid,
.benefit-grid,
.internal-links__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.featured-book-card,
.post-card,
.newsletter-box,
.internal-links__item,
.info-card,
.benefit-card,
.cta-panel,
.widget,
.empty-state,
.product-gallery,
.product-summary {
	background: var(--color-surface);
	border: 1px solid rgba(229, 229, 229, 0.8);
	border-radius: var(--radius-m);
	box-shadow: var(--shadow-soft);
}

.featured-book-card,
.post-card {
	overflow: hidden;
}

.featured-book-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem;
	align-items: stretch;
}

.catalog-book-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
	align-items: stretch;
}

.featured-book-card__content,
.post-card__content,
.newsletter-box,
.info-card,
.benefit-card,
.cta-panel,
.widget,
.empty-state {
	padding: 1.6rem;
}

.featured-book-card__media img,
.post-card__media img,
.product-card__media img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.post-card__media img {
	aspect-ratio: 16 / 10;
}

.featured-book-card__footer,
.product-card__footer,
.shop-toolbar,
.site-footer__bottom,
.post-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.85rem;
}

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

.product-card {
	list-style: none;
}

.product-card__inner {
	height: 100%;
	border: 1px solid rgba(229, 229, 229, 0.8);
	border-radius: var(--radius-m);
	background: var(--color-surface);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
}

.product-card__content {
	display: grid;
	gap: 0.9rem;
	padding: 1.4rem;
}

.featured-books-note {
	margin-top: 2rem;
	padding: 1.4rem 1.5rem;
	border: 1px dashed rgba(72, 113, 133, 0.35);
	border-radius: var(--radius-m);
	background: linear-gradient(135deg, rgba(72, 113, 133, 0.06), rgba(230, 184, 125, 0.08));
	color: var(--color-text);
}

.featured-books-note p:last-child {
	margin-bottom: 0;
	color: var(--color-muted);
	font-size: 0.95rem;
}

.home-book-card {
	position: relative;
	height: 100%;
}

.featured-book-grid > .home-book-card:nth-child(2) {
	transform: none;
}

.catalog-book-grid > .home-book-card:nth-child(3n + 2) {
	transform: none;
}

.home-book-card__frame {
	position: relative;
	display: grid;
	height: 100%;
	padding: 0.55rem;
	border: 1px solid rgba(229, 229, 229, 0.82);
	border-radius: 28px;
	background: linear-gradient(180deg, #ffffff 0%, #fbf8f4 100%);
	box-shadow: var(--shadow-soft);
	overflow: hidden;
}

.home-book-card__frame::before {
	content: "";
	position: absolute;
	top: 1.1rem;
	bottom: 1.1rem;
	left: 1rem;
	width: 0.7rem;
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(72, 113, 133, 0.22));
	mix-blend-mode: screen;
	z-index: 2;
}

.home-book-card__frame::after {
	content: "";
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 64px;
	height: 64px;
	border: 1px solid rgba(72, 113, 133, 0.08);
	border-radius: 20px;
	pointer-events: none;
}

.home-book-card--featured .home-book-card__frame::after {
	display: none;
}

.home-book-card--featured .home-book-card__frame {
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	background: linear-gradient(180deg, #ffffff 0%, #fcfaf7 100%);
	box-shadow: 0 24px 54px rgba(20, 43, 53, 0.08);
}

.home-book-card--catalog .home-book-card__frame {
	grid-template-rows: auto 1fr;
}

.home-book-card__media {
	position: relative;
	display: block;
	align-self: start;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(72, 113, 133, 0.12), rgba(230, 184, 125, 0.16));
}

.home-book-card__media::after {
	content: "";
	position: absolute;
	inset: auto 1rem 1rem 1rem;
	height: 18%;
	border-radius: 999px;
	background: linear-gradient(180deg, transparent, rgba(18, 32, 40, 0.18));
	filter: blur(18px);
	opacity: 0.65;
}

.home-book-card__media img {
	width: 100%;
	height: 100%;
	border-radius: 22px;
	object-fit: cover;
	transition: transform 260ms ease;
}

.home-book-card:hover .home-book-card__media img,
.home-book-card:focus-within .home-book-card__media img {
	transform: scale(1.03);
}

.home-book-card__badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	padding: 0.42rem 0.78rem;
	border-radius: 999px;
	border: 1px solid rgba(72, 113, 133, 0.08);
	background: rgba(255, 255, 255, 0.94);
	color: var(--color-text);
	font-size: 0.64rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	box-shadow: 0 10px 25px rgba(20, 43, 53, 0.12);
}

.home-book-card__body {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	padding: 1.15rem 1.05rem 1.15rem;
}

.home-book-card--featured .home-book-card__body {
	padding: 1.95rem 1.65rem 1.7rem;
}

.home-book-card__body::before {
	content: "";
	display: block;
	width: 54px;
	height: 1px;
	background: linear-gradient(90deg, rgba(72, 113, 133, 0.35), rgba(230, 184, 125, 0));
}

.home-book-card__top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.6rem;
}

.eyebrow--compact {
	gap: 0.45rem;
	font-size: 0.7rem;
	letter-spacing: 0.18em;
}

.home-book-card__status {
	display: inline-flex;
	align-items: center;
	padding: 0.32rem 0.58rem;
	border-radius: 999px;
	background: rgba(72, 113, 133, 0.08);
	color: var(--color-primary);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.home-book-card__title {
	margin: 0;
	font-size: clamp(1.1rem, 1.9vw, 1.5rem);
	line-height: 1.14;
}

.home-book-card--featured .home-book-card__title {
	max-width: 11ch;
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	line-height: 1.02;
}

.home-book-card--catalog .home-book-card__title {
	font-size: 1.02rem;
}

.home-book-card__title a {
	color: var(--color-text);
}

.home-book-card__specs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.55rem;
	margin: 0.25rem 0 0;
	padding: 0;
	list-style: none;
}

.home-book-card--featured .home-book-card__specs {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-book-card__specs li {
	display: grid;
	gap: 0.2rem;
	padding: 0.65rem 0.72rem;
	border: 1px solid rgba(72, 113, 133, 0.12);
	border-radius: 15px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(237, 243, 245, 0.74));
	min-width: 0;
}

.home-book-card__specs strong {
	font-size: 0.58rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-primary);
}

.home-book-card__specs span {
	font-size: 0.72rem;
	line-height: 1.35;
	color: var(--color-text);
}

.home-book-card__footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.9rem;
	margin-top: auto;
	padding-top: 0.7rem;
	border-top: 1px solid rgba(72, 113, 133, 0.1);
}

.home-book-card__footer .price {
	font-size: 0.95rem;
}

.home-book-card--featured .home-book-card__footer .price {
	font-size: 1.05rem;
}

.home-book-card .text-link {
	font-size: 0.7rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.price,
.product-summary__price {
	font-weight: 800;
	color: var(--color-primary);
}

.page-intro__copy {
	display: grid;
	gap: 1rem;
}

.breadcrumbs {
	margin-bottom: 1.5rem;
}

.breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	font-size: 0.9rem;
	color: var(--color-muted);
}

.breadcrumbs__item {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
}

.breadcrumbs__item:not(:last-child)::after {
	content: "/";
	color: var(--color-border);
}

.content-layout {
	grid-template-columns: minmax(0, 1fr) 320px;
	align-items: start;
}

.content-layout--product {
	grid-template-columns: minmax(0, 1fr);
}

.content-layout__main {
	min-width: 0;
}

.prose > * + * {
	margin-top: 1.2rem;
}

.prose ul,
.prose ol {
	padding-left: 1.25rem;
}

.product-hero {
	grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
	align-items: start;
}

.product-hero--editorial {
	grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
	gap: clamp(1.5rem, 2vw, 2.4rem);
}

.product-main {
	display: grid;
	gap: 1.5rem;
	min-width: 0;
}

.product-main__header {
	display: grid;
	gap: 1rem;
	max-width: 60rem;
	padding: 0.4rem 0 0.2rem;
}

.product-main__header h1 {
	max-width: 12ch;
	margin: 0;
}

.product-main__lede {
	max-width: 58ch;
	font-size: 1.03rem;
	line-height: 1.8;
	color: var(--color-muted);
}

.product-main__lede > * {
	margin: 0;
}

.product-gallery {
	padding: 1rem;
}

.product-gallery__main img {
	width: 100%;
	border-radius: calc(var(--radius-m) - 8px);
}

.product-gallery__thumbs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(84px, 1fr));
	gap: 0.85rem;
	margin-top: 1rem;
}

.product-gallery__thumb {
	padding: 0;
	border: 1px solid var(--color-border);
	border-radius: 18px;
	background: transparent;
	overflow: hidden;
	cursor: pointer;
}

.product-gallery__thumb.is-active {
	border-color: var(--color-primary);
	box-shadow: 0 0 0 2px rgba(72, 113, 133, 0.12);
}

.product-overview-card,
.product-main__section,
.product-booking-card,
.product-trust-card {
	display: grid;
	gap: 1rem;
	padding: clamp(1.4rem, 1.6vw, 1.9rem);
	border: 1px solid rgba(72, 113, 133, 0.12);
	border-radius: 32px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 22px 52px rgba(27, 39, 47, 0.08);
}

.section-heading--product-overview {
	margin-bottom: 0.1rem;
	padding-left: 0;
}

.section-heading--product-overview::before,
.section-heading--product-overview::after {
	display: none;
}

.section-heading--product-overview h2 {
	font-size: 1.25rem;
	max-width: none;
}

.product-main__section {
	gap: 1.2rem;
}

.product-main__section .internal-links__grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.product-main__section .faq-item {
	background: linear-gradient(180deg, rgba(248, 250, 251, 0.95), rgba(255, 255, 255, 0.98));
}

.product-facts--overview {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.9rem;
}

.product-facts--overview .product-facts__item {
	gap: 0.5rem;
	min-height: 100%;
	padding: 1rem 1.05rem;
	border: 1px solid rgba(72, 113, 133, 0.12);
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(248, 250, 251, 0.96), rgba(241, 245, 247, 0.92));
}

.product-sidebar {
	min-width: 0;
}

.product-sidebar__sticky {
	position: sticky;
	top: 6.7rem;
	display: grid;
	gap: 1rem;
}

.product-booking-card {
	gap: 1.2rem;
}

.product-booking-card__header {
	display: grid;
	gap: 0.55rem;
}

.product-booking-card__header h2,
.product-trust-card h2 {
	margin: 0;
	font-size: 1.45rem;
	line-height: 1.2;
}

.product-booking-card__price-row {
	display: grid;
	gap: 0.65rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(72, 113, 133, 0.12);
}

.product-booking-card__price-line {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.45rem 0.7rem;
}

.product-booking-card__tax {
	display: inline-flex;
	align-items: center;
	min-height: 1.7rem;
	padding: 0.25rem 0.6rem;
	border: 1px solid rgba(72, 113, 133, 0.12);
	border-radius: 999px;
	background: rgba(237, 243, 245, 0.78);
	color: var(--color-muted);
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: 0;
}

.product-booking-card__tax.is-empty {
	display: none;
}

.product-booking-card__stock .stock {
	margin: 0;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-primary);
}

.product-booking-card .product-summary__price {
	font-size: clamp(1.6rem, 2vw, 2rem);
	line-height: 1;
}

.product-summary__purchase {
	display: grid;
	gap: 1rem;
}

.product-booking-card .product-summary__purchase .cart {
	display: grid;
	gap: 0.85rem;
}

.product-booking-card .product-summary__purchase .quantity {
	margin: 0;
	width: 100%;
}

.product-booking-card .product-summary__purchase .qty,
.product-booking-card .product-summary__purchase .single_add_to_cart_button,
.product-booking-card .product-summary__purchase .button {
	width: 100%;
}

.single_add_to_cart_button.is-loading,
.single_add_to_cart_button.is-added {
	position: relative;
	pointer-events: none;
}

.single_add_to_cart_button.is-loading::after,
.single_add_to_cart_button.is-added::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 1rem;
	width: 1rem;
	height: 1rem;
	transform: translateY(-50%);
}

.single_add_to_cart_button.is-loading::after {
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-top-color: #ffffff;
	border-radius: 50%;
	animation: gseditorial-spin 0.75s linear infinite;
}

.single_add_to_cart_button.is-added::after {
	width: 0.95rem;
	height: 0.55rem;
	border-right: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
	transform: translateY(-62%) rotate(45deg);
}

.product-summary__purchase .cart {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
}

.product-summary__purchase {
	display: grid;
	gap: 1rem;
}

.product-summary__purchase .cart {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
}

.product-summary__purchase .quantity {
	margin: 0;
}

.product-summary__purchase .qty {
	width: 88px;
	text-align: center;
}

.product-summary__note {
	margin: 0;
	color: var(--color-muted);
	font-size: 0.95rem;
	line-height: 1.7;
}

.product-booking-card__shipping {
	min-width: 0;
	padding-top: 1rem;
	border-top: 1px solid rgba(72, 113, 133, 0.12);
}

.product-booking-card__shipping .gsmse-components {
	gap: 0.7rem;
	margin: 0;
	font-size: 0.88rem;
}

.product-booking-card__shipping .gsmse-market-badge,
.product-booking-card__shipping .gsmse-incentive {
	width: 100%;
}

.product-booking-card__shipping .gsmse-progress,
.product-booking-card__shipping .gsmse-delivery,
.product-booking-card__shipping .gsmse-disclaimer {
	padding: 0.75rem;
}

.product-booking-card__shipping .gs-market-shipping-estimator__quote {
	padding: 0.85rem;
}

@keyframes gseditorial-spin {
	from {
		transform: translateY(-50%) rotate(0deg);
	}

	to {
		transform: translateY(-50%) rotate(360deg);
	}
}

.product-trust-card {
	gap: 1.1rem;
	background: linear-gradient(180deg, rgba(244, 247, 248, 0.95), rgba(255, 255, 255, 0.98));
}

.product-trust-card__intro {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.75;
	color: var(--color-muted);
}

.product-trust-list {
	display: grid;
	gap: 0.8rem;
}

.product-trust-list__item {
	display: grid;
	gap: 0.35rem;
	padding-top: 0.85rem;
	border-top: 1px solid rgba(72, 113, 133, 0.12);
}

.product-trust-list__item:first-child {
	padding-top: 0;
	border-top: 0;
}

.product-trust-list__item h3 {
	margin: 0;
	font-size: 0.94rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-primary);
}

.product-trust-list__item p {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.7;
	color: var(--color-muted);
}

.product-facts,
.feature-list {
	display: grid;
	gap: 1rem;
	margin: 0;
}

.product-facts__item,
.feature-list li {
	display: grid;
	gap: 0.25rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--color-border);
}

.product-facts__item dt {
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-primary);
}

.product-facts__item dd {
	margin: 0;
	font-size: 1rem;
	line-height: 1.55;
	color: var(--color-text);
}

.feature-list {
	padding: 0;
	list-style: none;
}

.feature-list strong {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--color-primary);
}

.internal-links__item {
	display: grid;
	gap: 0.4rem;
	padding: 1.4rem;
	color: var(--color-text);
}

.internal-links__item span {
	color: var(--color-muted);
}

.faq-list {
	display: grid;
	gap: 1rem;
}

.faq-item {
	padding: 1.2rem 1.4rem;
	border: 1px solid var(--color-border);
	border-radius: 20px;
	background: var(--color-surface);
	overflow: hidden;
	transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	cursor: pointer;
	font-weight: 700;
	list-style: none;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "+";
	flex: 0 0 auto;
	font-size: 1.2rem;
	line-height: 1;
	color: var(--color-primary);
	transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
}

.faq-item[open] {
	border-color: rgba(72, 113, 133, 0.16);
	box-shadow: 0 16px 34px rgba(18, 35, 44, 0.06);
}

.faq-item[open] summary::after {
	transform: rotate(45deg);
}

.faq-item.is-closing {
	border-color: var(--color-border);
	box-shadow: none;
}

.faq-item.is-closing summary::after {
	transform: rotate(0deg);
}

.faq-item__content {
	height: 0;
	padding-top: 0;
	overflow: hidden;
	opacity: 0;
	transform: translateY(-6px);
	transition: height 280ms cubic-bezier(0.22, 1, 0.36, 1), padding-top 280ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease, transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
	color: var(--color-muted);
}

.faq-item[open] .faq-item__content {
	padding-top: 1rem;
	opacity: 1;
	transform: translateY(0);
}

.faq-item.is-closing .faq-item__content {
	padding-top: 0;
	opacity: 0;
	transform: translateY(-6px);
}

.cta-panel {
	text-align: center;
}

.shop-toolbar {
	margin-bottom: 1.75rem;
}

.woocommerce-ordering select {
	width: auto;
	min-width: 220px;
}

.woocommerce-pagination ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
	list-style: none;
	padding: 0;
}

.woocommerce-pagination a,
.woocommerce-pagination span,
.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 0.6rem;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	background: var(--color-surface);
}

.current,
.woocommerce-pagination .current {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #ffffff;
}

.blog-sidebar {
	display: grid;
	gap: 1rem;
}

.sidebar-link-list,
.footer-link-list {
	display: grid;
	gap: 0.85rem;
}

.widget-title,
.site-footer__heading,
.newsletter-box__title {
	font-size: 1.25rem;
}

.newsletter-box {
	display: grid;
	gap: 1rem;
}

.newsletter-box form {
	display: grid;
	gap: 0.8rem;
}

.newsletter-box input[type="email"],
.newsletter-box input[type="text"] {
	border-radius: 999px;
}

.newsletter-box input[type="submit"],
.newsletter-box button,
.newsletter-box .button {
	width: 100%;
}

.site-footer {
	position: relative;
	overflow: clip;
	padding: 4.5rem 0 2rem;
	border-top: 1px solid rgba(229, 229, 229, 0.8);
	background: linear-gradient(180deg, #fcfbf9 0%, #f3f5f6 100%);
}

.site-footer__grid {
	grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
	align-items: start;
	padding: 2rem;
	border: 1px solid rgba(72, 113, 133, 0.1);
	border-radius: 32px;
	background: rgba(255, 255, 255, 0.82);
	backdrop-filter: blur(10px);
}

.site-footer__description,
.site-footer__bottom {
	color: var(--color-muted);
}

.site-footer__bottom {
	padding-top: 1.5rem;
	border-top: 1px solid var(--color-border);
}

.empty-state {
	text-align: center;
}

.empty-state--large {
	padding: 2.5rem;
}

.post-card__placeholder {
	display: grid;
	place-items: center;
	min-height: 260px;
	background: linear-gradient(135deg, rgba(72, 113, 133, 0.18), rgba(230, 184, 125, 0.18));
	color: var(--color-primary);
	font-weight: 700;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	margin: 0 0 1rem;
	padding: 1rem 1.2rem;
	border: 1px solid var(--color-border);
	border-radius: 18px;
	background: var(--color-surface);
}

.post-card {
	position: relative;
	display: grid;
	grid-template-rows: auto 1fr;
	height: 100%;
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.post-card:hover,
.post-card:focus-within {
	transform: translateY(-4px);
}

.post-card__content {
	display: grid;
	grid-template-rows: auto auto 1fr auto;
	gap: 0.85rem;
	height: 100%;
	padding: 1.45rem;
	background: transparent;
}

.post-card__meta {
	justify-content: flex-start;
	gap: 0.55rem;
}

.post-card__meta time,
.post-card__meta span {
	display: inline-flex;
	align-items: center;
	padding: 0.36rem 0.7rem;
	border: 1px solid rgba(72, 113, 133, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	color: var(--color-primary);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.post-card__title {
	margin: 0;
	font-size: 1.3rem;
	line-height: 1.12;
	display: -webkit-box;
	min-height: calc(1.12em * 2);
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.post-card__title a {
	color: var(--color-text);
}

.post-card__excerpt {
	color: var(--color-muted);
	font-size: 0.95rem;
	line-height: 1.65;
}

.section--newsletter .shell--narrow {
	width: min(calc(100% - 2rem), 980px);
}

.newsletter-stage {
	position: relative;
}

.newsletter-stage::before {
	content: "";
	position: absolute;
	left: 1.25rem;
	right: 1.25rem;
	top: 1.25rem;
	bottom: 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 42px;
	pointer-events: none;
}

.section--newsletter .newsletter-box,
.newsletter-box--home-premium {
	position: relative;
	grid-template-columns: minmax(0, 0.95fr) minmax(260px, 1.05fr);
	align-items: center;
	gap: 1.5rem 2.4rem;
	padding: clamp(2.2rem, 5vw, 3rem);
	border-radius: 38px;
	overflow: hidden;
	border: 1px solid rgba(72, 113, 133, 0.1);
	background: #fbfaf7;
	box-shadow: 0 32px 72px rgba(0, 0, 0, 0.2);
}

.section--newsletter .newsletter-box::before,
.newsletter-box--home-premium::before {
	content: "";
	position: absolute;
	top: 1.2rem;
	right: 1.2rem;
	width: 5.5rem;
	height: 5.5rem;
	border: 1px solid rgba(72, 113, 133, 0.08);
	border-radius: 24px;
	background: transparent;
}

.section--newsletter .newsletter-box::after,
.newsletter-box--home-premium::after {
	content: "";
	position: absolute;
	left: 1.4rem;
	bottom: 1.4rem;
	width: 5rem;
	height: 1px;
	border: 0;
	border-radius: 0;
	background: rgba(72, 113, 133, 0.24);
}

.section--newsletter .newsletter-box > *,
.newsletter-box--home-premium > * {
	position: relative;
	z-index: 1;
}

.section--newsletter .newsletter-box__title,
.newsletter-box--home-premium .newsletter-box__title {
	max-width: 11ch;
	margin-bottom: 0;
	font-size: clamp(2.2rem, 4vw, 3.35rem);
	line-height: 0.97;
}

.section--newsletter .newsletter-box__eyebrow,
.newsletter-box--home-premium .newsletter-box__eyebrow {
	color: rgba(72, 113, 133, 0.9);
}

.section--newsletter .newsletter-box__text,
.newsletter-box--home-premium .newsletter-box__text {
	max-width: 42ch;
	color: #5d6870;
	font-size: 1rem;
	line-height: 1.75;
}

.newsletter-box--home-premium .newsletter-box__form {
	position: relative;
	padding-left: clamp(1.6rem, 3vw, 2.2rem);
	border-left: 1px solid rgba(72, 113, 133, 0.12);
}

.newsletter-box--home-premium .newsletter-box__form::before {
	content: "";
	position: absolute;
	left: -1px;
	top: 0;
	width: 1px;
	height: 4.2rem;
	background: linear-gradient(180deg, rgba(72, 113, 133, 0.38), rgba(230, 184, 125, 0));
}

.section--newsletter .newsletter-box input[type="email"],
.section--newsletter .newsletter-box input[type="text"],
.section--newsletter .newsletter-box input[type="submit"],
.section--newsletter .newsletter-box button,
.section--newsletter .newsletter-box .button,
.newsletter-box--home-premium input[type="email"],
.newsletter-box--home-premium input[type="text"],
.newsletter-box--home-premium input[type="submit"],
.newsletter-box--home-premium button,
.newsletter-box--home-premium .button {
	border-color: rgba(72, 113, 133, 0.16);
}

.home-about {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
	gap: 2.4rem 3.2rem;
	align-items: center;
}

.home-about__content {
	display: grid;
	gap: 1.8rem;
}

.section-heading--home-about {
	margin-bottom: 0;
}

.section-heading--about-manifesto {
	max-width: none;
}

.section-heading--about-manifesto h2 {
	max-width: 10ch;
	padding-bottom: 1rem;
	font-size: clamp(2.5rem, 5vw, 4.2rem);
	line-height: 0.97;
}

.section-heading--about-manifesto h2::before {
	width: clamp(5.5rem, 16vw, 8rem);
	background: linear-gradient(90deg, rgba(72, 113, 133, 0.45), rgba(230, 184, 125, 0.2), transparent);
}

.section-heading--home-about .section-heading__text {
	max-width: 50ch;
	font-size: 1.03rem;
	line-height: 1.78;
}

.home-about__note {
	position: relative;
	max-width: 38rem;
	padding: 1.5rem 0 0;
	border-top: 1px solid rgba(72, 113, 133, 0.16);
	border-right: 0;
	border-bottom: 0;
	border-left: 0;
	border-radius: 0;
	background: transparent;
	overflow: hidden;
}

.home-about__note::before {
	display: none;
}

.home-about__note-title {
	margin: 0 0 0.85rem;
	font-family: var(--font-sans);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-primary);
}

.home-about__note-text,
.home-about__note-text p {
	color: #39444a;
	font-family: var(--font-serif);
	font-size: clamp(1.15rem, 1.7vw, 1.45rem);
	line-height: 1.55;
}

.home-about__note-text p:last-child {
	margin-bottom: 0;
}

.home-about__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.home-about__visual {
	position: relative;
	padding-left: 1.6rem;
}

.home-about__visual::before {
	content: "";
	position: absolute;
	inset: 2rem 0.8rem -1.1rem 0;
	border: 1px solid rgba(72, 113, 133, 0.08);
	border-radius: 34px;
	background: rgba(255, 255, 255, 0.22);
}

.home-about__frame {
	position: relative;
	padding: 1rem;
	border: 1px solid rgba(72, 113, 133, 0.12);
	border-radius: 34px;
	background: rgba(250, 248, 244, 0.92);
	box-shadow: 0 22px 54px rgba(20, 43, 53, 0.08);
}

.home-about__frame::before {
	content: "";
	position: absolute;
	top: 1.1rem;
	right: 1.1rem;
	width: 84px;
	height: 84px;
	border: 1px solid rgba(72, 113, 133, 0.08);
	border-radius: 24px;
}

.home-about__frame::after {
	content: "";
	position: absolute;
	left: 1.1rem;
	bottom: 1.1rem;
	width: 120px;
	height: 1px;
	background: linear-gradient(90deg, rgba(72, 113, 133, 0.4), rgba(230, 184, 125, 0));
}

.home-about__media,
.home-about__placeholder {
	position: relative;
	min-height: 100%;
	border-radius: 28px;
	overflow: hidden;
}

.home-about__media img {
	width: 100%;
	aspect-ratio: 4 / 4.55;
	object-fit: cover;
	border-radius: 28px;
}

.home-about__placeholder {
	display: grid;
	align-content: end;
	gap: 1rem;
	min-height: 32rem;
	padding: 2rem;
	background:
		repeating-linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.025) 0,
			rgba(255, 255, 255, 0.025) 1px,
			transparent 1px,
			transparent 18px
		),
		#243038;
	color: #ffffff;
}

.home-about__placeholder::before {
	content: "";
	position: absolute;
	inset: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 24px;
}

.home-about__placeholder-kicker {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	width: fit-content;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.home-about__placeholder-kicker::before {
	content: "";
	width: 2.4rem;
	height: 1px;
	background: rgba(255, 255, 255, 0.58);
}

.home-about__placeholder strong {
	position: relative;
	max-width: 12ch;
	font-family: var(--font-serif);
	font-size: clamp(2rem, 3.4vw, 3rem);
	font-weight: 600;
	line-height: 1.02;
	letter-spacing: -0.04em;
}

.home-about__placeholder-lines {
	position: relative;
	display: grid;
	gap: 0.55rem;
	max-width: 15rem;
}

.home-about__placeholder-lines span {
	display: block;
	height: 1px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.16));
}

.home-about__placeholder-lines span:nth-child(2) {
	width: 82%;
}

.home-about__placeholder-lines span:nth-child(3) {
	width: 58%;
}

.internal-links__grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.internal-links__item {
	position: relative;
	gap: 0.65rem;
	min-height: 100%;
	padding: 1.35rem 1.35rem 1.45rem;
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 243, 245, 0.8));
	overflow: hidden;
}

.internal-links__item::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 4px;
	background: linear-gradient(180deg, var(--color-primary), var(--color-accent));
}

.internal-links__item::after {
	content: "\2197";
	position: absolute;
	top: 1rem;
	right: 1rem;
	display: grid;
	place-items: center;
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	background: rgba(72, 113, 133, 0.08);
	color: var(--color-primary);
	font-size: 0.95rem;
}

.internal-links__item strong {
	max-width: 15ch;
	padding-right: 2.5rem;
	font-family: var(--font-serif);
	font-size: 1.08rem;
	font-weight: 600;
	line-height: 1.2;
	color: var(--color-text);
}

.internal-links__item span {
	font-size: 0.93rem;
	line-height: 1.6;
}

.site-footer::before {
	content: "";
	position: absolute;
	top: -8rem;
	right: -7rem;
	width: 24rem;
	height: 24rem;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(230, 184, 125, 0.18), transparent 68%);
}

.site-footer__title {
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.site-footer__description {
	max-width: 24rem;
}

.site-footer .menu--footer {
	display: grid;
	gap: 0.75rem;
}

.site-footer__heading {
	margin-bottom: 1rem;
	font-family: var(--font-sans);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-primary);
}

.newsletter-box--footer {
	height: 100%;
	padding: 1.6rem;
	border-radius: 28px;
	background: linear-gradient(180deg, rgba(237, 243, 245, 0.78), rgba(255, 255, 255, 0.96));
}

@media (max-width: 1024px) {
	.site-header__inner,
	.hero-section__grid,
	.content-layout,
	.product-hero,
	.site-footer__grid,
	.catalog-book-grid,
	.products,
	.post-grid,
	.benefit-grid,
	.internal-links__grid {
		grid-template-columns: 1fr 1fr;
	}

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

	.section-heading--featured {
		grid-template-columns: 1fr;
	}

	.section-heading--featured .section-heading__text {
		grid-column: 1;
		grid-row: auto;
		max-width: 50ch;
		padding-left: 0;
		border-left: 0;
	}

	.featured-book-grid > .home-book-card:nth-child(2),
	.catalog-book-grid > .home-book-card:nth-child(3n + 2) {
		transform: none;
	}

	.home-book-card__specs--featured-top {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.site-header__cta {
		display: none;
	}

	.section--newsletter .newsletter-box {
		grid-template-columns: 1fr;
	}

	.newsletter-box--home-premium .newsletter-box__form {
		padding-left: 0;
		border-left: 0;
	}

	.newsletter-box--home-premium .newsletter-box__form::before {
		display: none;
	}

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

	.home-about__visual {
		padding-left: 0;
	}

	.home-about__visual::before {
		inset: 1rem 0 -1rem;
	}

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

	.product-sidebar__sticky {
		position: static;
	}

	.product-facts--overview {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.content-layout__sidebar {
		grid-column: 1 / -1;
	}

	.site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 780px) {
	body.has-open-menu {
		overflow: hidden;
	}

	.section--benefits .section-heading h2 {
		white-space: normal;
	}

	.site-header__inner,
	.hero-section__grid,
	.content-layout,
	.product-hero,
	.site-footer__grid,
	.catalog-book-grid,
	.products,
	.post-grid,
	.benefit-grid,
	.internal-links__grid {
		grid-template-columns: 1fr;
	}

	.menu-toggle {
		display: inline-flex;
		grid-column: 4;
		justify-self: end;
	}

	.site-header__inner {
		position: relative;
		grid-template-columns: auto 1fr auto auto;
		align-items: center;
	}

	.site-header__utilities {
		grid-column: 3;
		justify-self: end;
	}

	.site-header__inner--no-utilities .menu-toggle,
	.site-header__inner--no-cta.site-header__inner--no-utilities .menu-toggle {
		grid-column: 3;
	}

	.site-navigation {
		position: absolute;
		top: calc(100% + 0.65rem);
		right: 0;
		left: 0;
		width: 100%;
		margin-left: 0;
		z-index: 30;
		display: block;
		grid-column: auto;
		max-height: calc(100vh - 6.5rem);
		overflow-y: auto;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-0.75rem);
		transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
	}

	.site-navigation.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}

	.site-header__utilities {
		justify-self: end;
		gap: 0.55rem;
	}

	.menu--primary {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
		gap: 0.35rem;
		padding: 0.55rem;
		border: 1px solid rgba(72, 113, 133, 0.12);
		border-radius: 28px;
		background: rgba(255, 255, 255, 0.96);
		box-shadow: 0 28px 54px rgba(18, 35, 44, 0.14);
		backdrop-filter: blur(18px);
	}

	.menu--primary a {
		display: flex;
		width: 100%;
		padding: 0.95rem 1rem;
		border-radius: 18px;
		font-size: 0.76rem;
	}

	.site-language-switcher {
		justify-self: end;
	}

	.site-language-switcher__trigger {
		min-height: 2.9rem;
		padding-inline: 0.75rem 2rem;
	}

	.site-cart-button {
		width: 2.9rem;
		height: 2.9rem;
	}

	.site-header__cta {
		display: none;
	}

	.page-intro,
	.section,
	.hero-section {
		padding: 3rem 0;
	}

	.home-book-card--featured .home-book-card__frame {
		grid-template-columns: 1fr;
	}

	.featured-books-stage {
		padding: 1.5rem;
		border-radius: 30px;
	}

	.featured-books-stage::before {
		inset: 0.7rem;
		border-radius: 24px;
	}

	.home-about__frame::before {
		width: 68px;
		height: 68px;
	}

	.home-about__placeholder {
		min-height: 24rem;
	}

	.hero-section__media {
		padding: 1rem 0.6rem 1.2rem;
	}

	.hero-section__media::before {
		inset: 0.85rem 0 0.85rem 0.45rem;
	}

	.home-book-card--featured .home-book-card__specs,
	.home-book-card__specs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.product-gallery,
	.product-overview-card,
	.product-booking-card,
	.product-trust-card {
		padding: 1.25rem;
	}

	.product-main__header h1 {
		max-width: none;
	}

	.section-heading {
		padding-right: 0;
	}

	.section-heading--featured h2,
	.section-heading--about-manifesto h2,
	.section--newsletter .newsletter-box__title,
	.newsletter-box--home-premium .newsletter-box__title {
		max-width: none;
	}

	.shop-toolbar {
		flex-direction: column;
		align-items: stretch;
	}

	.woocommerce-ordering select {
		width: 100%;
	}
}

@media (max-width: 560px) {
	h1 {
		font-size: 2.4rem;
	}

	h2 {
		font-size: 1.9rem;
	}

	.site-header__inner {
		min-height: 74px;
	}

	.section-heading {
		padding-left: 1rem;
	}

	.home-book-card__specs,
	.home-book-card--featured .home-book-card__specs {
		grid-template-columns: 1fr;
	}

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

	.product-facts--overview {
		grid-template-columns: 1fr;
	}

	.product-summary__purchase .cart {
		flex-direction: column;
		align-items: stretch;
	}

	.button,
	.single_add_to_cart_button,
	.button-row .button,
	.button-row .button--ghost {
		width: 100%;
	}
}

.site-footer--editorial-dark {
	position: relative;
	margin-top: 56px;
	overflow: clip;
	color: rgba(246, 247, 250, 0.8);
	border-top: 0;
	background: linear-gradient(180deg, #2d3034 0%, #1f2226 100%);
}

.site-footer--editorial-dark::before {
	content: "";
	position: absolute;
	top: -9rem;
	right: -7rem;
	width: 24rem;
	height: 24rem;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(230, 184, 125, 0.12), transparent 68%);
}

.site-footer--editorial-dark .site-footer__shell {
	position: relative;
	z-index: 1;
	padding-top: 58px;
	padding-bottom: 24px;
}

.site-footer--editorial-dark .site-footer__top {
	display: grid;
	grid-template-columns: minmax(280px, 1.25fr) repeat(calc(var(--footer-top-columns) - 1), minmax(0, 1fr));
	gap: 42px;
	align-items: start;
}

.site-footer--editorial-dark .site-footer__column {
	min-width: 0;
}

.site-footer--editorial-dark .site-footer__column--brand {
	display: grid;
	gap: 1.5rem;
}

.site-footer--editorial-dark .site-footer__logo {
	position: relative;
	display: inline-flex;
	width: fit-content;
}

.site-footer--editorial-dark .site-footer__logo img {
	display: block;
	max-width: 240px;
	max-height: 78px;
	width: auto;
	height: auto;
}

.site-footer--editorial-dark .site-footer__logo::after {
	content: "";
	position: absolute;
	top: 50%;
	left: calc(100% + 18px);
	width: 88px;
	height: 1px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.08));
	transform: translateY(-50%);
}

.site-footer--editorial-dark .site-footer__intro {
	display: grid;
	gap: 0.85rem;
	max-width: 32rem;
}

.site-footer--editorial-dark .site-footer__eyebrow {
	margin: 0;
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	width: fit-content;
	color: rgba(246, 247, 250, 0.68);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.site-footer--editorial-dark .site-footer__eyebrow::before {
	content: "";
	width: 2.8rem;
	height: 1px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.16));
}

.site-footer--editorial-dark .site-footer__intro-title {
	margin: 0;
	max-width: 14ch;
	color: #ffffff;
	font-size: clamp(1.7rem, 3vw, 2.5rem);
	line-height: 1.02;
	letter-spacing: -0.03em;
}

.site-footer--editorial-dark .site-footer__intro-text,
.site-footer--editorial-dark .site-footer__intro-text p,
.site-footer--editorial-dark .site-footer__social p,
.site-footer--editorial-dark .site-footer__hours p,
.site-footer--editorial-dark .site-footer__meta span {
	color: rgba(246, 247, 250, 0.72);
}

.site-footer--editorial-dark .site-footer__intro-text p:last-child,
.site-footer--editorial-dark .site-footer__social p:last-child,
.site-footer--editorial-dark .site-footer__hours p:last-child {
	margin-bottom: 0;
}

.site-footer--editorial-dark .site-footer__column h3,
.site-footer--editorial-dark .site-footer__contact h3,
.site-footer--editorial-dark .site-footer__hours h4,
.site-footer--editorial-dark .site-footer__social h3 {
	margin: 0 0 18px;
	color: #ffffff;
	font-family: var(--font-sans);
	font-size: 0.84rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.site-footer--editorial-dark .site-footer__contact {
	display: grid;
	gap: 1rem;
}

.site-footer--editorial-dark .site-footer__social-block {
	display: grid;
	gap: 1rem;
	padding-top: 1.1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer--editorial-dark .site-footer__social-copy,
.site-footer--editorial-dark .site-footer__social-copy p {
	color: rgba(246, 247, 250, 0.7);
}

.site-footer--editorial-dark .site-footer__social-copy p:last-child {
	margin-bottom: 0;
}

.site-footer--editorial-dark .site-footer__meta,
.site-footer--editorial-dark .site-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer--editorial-dark .site-footer__meta li + li,
.site-footer--editorial-dark .site-footer__links li + li {
	margin-top: 14px;
}

.site-footer--editorial-dark .site-footer__links li {
	position: relative;
	padding-left: 18px;
}

.site-footer--editorial-dark .site-footer__links li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.78em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.56);
}

.site-footer--editorial-dark .site-footer__links a,
.site-footer--editorial-dark .site-footer__meta a,
.site-footer--editorial-dark .site-footer__bottom a {
	color: rgba(246, 247, 250, 0.78);
	font-weight: 500;
	transition: color var(--transition), transform var(--transition), border-color var(--transition), background var(--transition);
}

.site-footer--editorial-dark .site-footer__links a.is-highlight {
	color: #ffffff;
}

.site-footer--editorial-dark .site-footer__links a:hover,
.site-footer--editorial-dark .site-footer__meta a:hover,
.site-footer--editorial-dark .site-footer__bottom a:hover {
	color: #ffffff;
	transform: translateX(2px);
}

.site-footer--editorial-dark .site-footer__meta strong {
	display: block;
	margin-bottom: 5px;
	color: rgba(246, 247, 250, 0.52);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.site-footer--editorial-dark .site-footer__hours {
	display: grid;
	gap: 0.55rem;
}

.site-footer--editorial-dark .site-footer__hours h4 {
	margin-bottom: 0;
}

.site-footer--editorial-dark .site-footer__support-note {
	margin: 0;
	color: rgba(246, 247, 250, 0.62);
	font-size: 0.95rem;
}

.site-footer--editorial-dark .site-footer__column--cta {
	display: grid;
	gap: 1rem;
	align-content: start;
	padding: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 28px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.site-footer--editorial-dark .site-footer__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
}

.site-footer--editorial-dark .site-footer__action {
	min-height: 52px;
	padding-inline: 1.35rem;
	border-radius: 999px;
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.site-footer--editorial-dark .site-footer__middle {
	display: grid;
	grid-template-columns: 1fr;
	justify-items: center;
	margin-top: 42px;
	padding-top: 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer--editorial-dark .site-footer__social {
	display: grid;
	gap: 1rem;
	justify-items: center;
	max-width: 40rem;
	text-align: center;
}

.site-footer--editorial-dark .site-footer__social-links,
.site-footer--editorial-dark .site-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.site-footer--editorial-dark .site-footer__social-links {
	justify-content: flex-start;
}

.site-footer--editorial-dark .site-footer__social-links a,
.site-footer--editorial-dark .site-footer__legal a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 14px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: transparent;
	color: #f6f7fa;
}

.site-footer--editorial-dark .site-footer__social-link {
	gap: 0.8rem;
	min-height: 48px;
	padding: 0.4rem 1rem 0.4rem 0.45rem;
	background: rgba(255, 255, 255, 0.04);
}

.site-footer--editorial-dark .site-footer__social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.2rem;
	height: 2.2rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.09);
	color: #ffffff;
	flex-shrink: 0;
}

.site-footer--editorial-dark .site-footer__social-icon svg {
	display: block;
	width: 1rem;
	height: 1rem;
	stroke: currentColor;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.site-footer--editorial-dark .site-footer__social-label {
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.site-footer--editorial-dark .site-footer__social-links a:hover,
.site-footer--editorial-dark .site-footer__legal a:hover {
	transform: translateY(-1px);
	background: rgba(255, 255, 255, 0.05);
}

.site-footer--editorial-dark .site-footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 18px;
	margin-top: 32px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(246, 247, 250, 0.68);
	font-size: 0.94rem;
}

.site-footer--editorial-dark .site-footer__bottom p {
	margin: 0;
}

@media (max-width: 980px) {
	.site-footer--editorial-dark .site-footer__top {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.site-footer--editorial-dark .site-footer__logo::after {
		display: none;
	}

	.site-footer--editorial-dark .site-footer__social {
		justify-items: flex-start;
		text-align: left;
	}

	.site-footer--editorial-dark .site-footer__social-links,
	.site-footer--editorial-dark .site-footer__legal {
		justify-content: flex-start;
	}

	.site-footer--editorial-dark .site-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* Home Editorial Refinement: blog + SEO */
.section--latest-posts {
	background: linear-gradient(180deg, #f7f2eb 0%, #fbfaf7 100%);
}

.section--latest-posts .shell {
	position: relative;
	padding: clamp(2rem, 4vw, 3rem);
	border: 1px solid rgba(72, 113, 133, 0.08);
	border-radius: 42px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 24px 64px rgba(20, 43, 53, 0.06);
}

.section--latest-posts .shell::before {
	content: "";
	position: absolute;
	inset: 1rem;
	border: 1px solid rgba(72, 113, 133, 0.05);
	border-radius: 32px;
	pointer-events: none;
}

.section--latest-posts .section-heading--home {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem);
	column-gap: clamp(1.8rem, 4vw, 4rem);
	row-gap: 0.8rem;
	align-items: end;
	max-width: none;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section--latest-posts .section-heading__eyebrow,
.section--latest-posts .section-heading--home h2 {
	grid-column: 1;
}

.section--latest-posts .section-heading--home h2 {
	max-width: 9ch;
	padding-bottom: 1rem;
	font-size: clamp(2.3rem, 4.6vw, 3.85rem);
	line-height: 0.97;
}

.section--latest-posts .section-heading--home h2::before {
	width: clamp(5rem, 14vw, 7rem);
	background: linear-gradient(90deg, rgba(72, 113, 133, 0.48), rgba(230, 184, 125, 0.3), transparent);
}

.section--latest-posts .section-heading__text {
	grid-column: 2;
	grid-row: 1 / span 2;
	align-self: end;
	max-width: 29ch;
	padding-left: 1.4rem;
	border-left: 1px solid rgba(72, 113, 133, 0.12);
	font-size: 0.98rem;
	line-height: 1.72;
}

.section--latest-posts .post-grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 1.35rem;
}

.section--latest-posts .post-card {
	grid-column: span 4;
	border: 1px solid rgba(72, 113, 133, 0.09);
	border-radius: 30px;
	background: #ffffff;
	box-shadow: 0 22px 52px rgba(20, 43, 53, 0.08);
	transform: none;
}

.section--latest-posts .post-card:hover,
.section--latest-posts .post-card:focus-within {
	transform: translateY(-3px);
}

.section--latest-posts .post-card:first-child {
	grid-column: span 7;
	grid-row: span 2;
}

.section--latest-posts .post-card:nth-child(2),
.section--latest-posts .post-card:nth-child(3) {
	grid-column: span 5;
}

.section--latest-posts .post-card__media img {
	aspect-ratio: 16 / 10;
}

.section--latest-posts .post-card:first-child .post-card__media img {
	aspect-ratio: 4 / 4.6;
}

.section--latest-posts .post-card__content {
	gap: 0.95rem;
	padding: 1.45rem;
	background: #ffffff;
}

.section--latest-posts .post-card:first-child .post-card__content {
	padding: 1.8rem;
}

.section--latest-posts .post-card__meta {
	justify-content: flex-start;
	gap: 0.65rem 1rem;
}

.section--latest-posts .post-card__meta time,
.section--latest-posts .post-card__meta span {
	padding: 0;
	border: 0;
	background: transparent;
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.18em;
}

.section--latest-posts .post-card__meta time {
	color: rgba(51, 51, 51, 0.55);
}

.section--latest-posts .post-card__title {
	font-size: 1.22rem;
	line-height: 1.08;
}

.section--latest-posts .post-card:first-child .post-card__title {
	max-width: 11ch;
	font-size: clamp(1.8rem, 3vw, 2.45rem);
	line-height: 1.01;
}

.section--latest-posts .post-card__excerpt {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	font-size: 0.93rem;
}

.section--latest-posts .post-card:first-child .post-card__excerpt {
	-webkit-line-clamp: 5;
	max-width: 42ch;
	font-size: 0.97rem;
}

.section--latest-posts .post-card .text-link {
	margin-top: auto;
	font-size: 0.68rem;
	letter-spacing: 0.18em;
}

.section--seo-links {
	background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
}

.section--seo-links .shell--narrow {
	position: relative;
	width: min(calc(100% - 2rem), 1040px);
	padding: clamp(1rem, 3vw, 1.75rem) 0 0;
}

.section--seo-links .section-heading--home {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(16rem, 22rem);
	column-gap: clamp(1.6rem, 4vw, 3rem);
	row-gap: 0.75rem;
	align-items: end;
	max-width: none;
	margin-bottom: clamp(1.8rem, 4vw, 2.6rem);
}

.section--seo-links .section-heading__eyebrow,
.section--seo-links .section-heading--home h2 {
	grid-column: 1;
}

.section--seo-links .section-heading--home h2 {
	max-width: 8.5ch;
	padding-bottom: 0.9rem;
	font-size: clamp(2.1rem, 4.2vw, 3.3rem);
	line-height: 0.98;
}

.section--seo-links .section-heading__text {
	grid-column: 2;
	grid-row: 1 / span 2;
	align-self: end;
	max-width: 27ch;
	padding-left: 1.3rem;
	border-left: 1px solid rgba(72, 113, 133, 0.1);
	font-size: 0.96rem;
	line-height: 1.72;
}

.section--seo-links .internal-links__grid {
	counter-reset: home-seo;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 1rem;
}

.section--seo-links .internal-links__item {
	grid-column: span 6;
	gap: 0.8rem;
	padding: 2.9rem 1.45rem 1.5rem;
	border: 1px solid rgba(72, 113, 133, 0.1);
	border-radius: 28px;
	background: #ffffff;
	box-shadow: 0 18px 44px rgba(20, 43, 53, 0.06);
}

.section--seo-links .internal-links__item:first-child {
	grid-column: span 12;
	padding-right: 4rem;
}

.section--seo-links .internal-links__item::before {
	counter-increment: home-seo;
	content: counter(home-seo, decimal-leading-zero);
	position: absolute;
	top: 1.15rem;
	left: 1.45rem;
	width: auto;
	height: auto;
	background: none;
	color: rgba(72, 113, 133, 0.48);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.section--seo-links .internal-links__item::after {
	top: 1.05rem;
	right: 1.1rem;
	width: 2.2rem;
	height: 2.2rem;
	border: 1px solid rgba(72, 113, 133, 0.1);
	background: transparent;
	font-size: 0.88rem;
}

.section--seo-links .internal-links__item strong {
	max-width: 14ch;
	padding-right: 2rem;
	font-size: 1.12rem;
	line-height: 1.12;
}

.section--seo-links .internal-links__item:first-child strong {
	max-width: 12ch;
	font-size: clamp(1.5rem, 2.5vw, 2.05rem);
	line-height: 1.02;
}

.section--seo-links .internal-links__item span {
	max-width: 34ch;
	font-size: 0.92rem;
	line-height: 1.66;
}

@media (max-width: 1024px) {
	.section--latest-posts .section-heading--home,
	.section--seo-links .section-heading--home,
	.section--category-context-links .section-heading--category-context {
		grid-template-columns: 1fr;
	}

	.section--latest-posts .section-heading__text,
	.section--seo-links .section-heading__text,
	.section--category-context-links .section-heading__text {
		grid-column: 1;
		grid-row: auto;
		max-width: 50ch;
		padding-left: 0;
		border-left: 0;
	}

	.section--latest-posts .post-grid,
	.section--seo-links .internal-links__grid,
	.section--category-context-links .internal-links__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.section--latest-posts .post-card,
	.section--latest-posts .post-card:first-child,
	.section--latest-posts .post-card:nth-child(2),
	.section--latest-posts .post-card:nth-child(3),
	.section--seo-links .internal-links__item,
	.section--seo-links .internal-links__item:first-child,
	.section--category-context-links .internal-links__item {
		grid-column: auto;
		grid-row: auto;
	}

	.section--latest-posts .post-card:first-child .post-card__media img {
		aspect-ratio: 16 / 10;
	}

	.section--latest-posts .post-card:first-child .post-card__title,
	.section--seo-links .internal-links__item:first-child strong {
		max-width: none;
	}

	.section--category-context-links .section-heading--category-context h2,
	.section--category-context-links .internal-links__item strong {
		max-width: none;
		white-space: normal;
	}
}

@media (max-width: 780px) {
	.section--latest-posts .shell {
		padding: 1.4rem;
		border-radius: 30px;
	}

	.section--latest-posts .shell::before {
		inset: 0.7rem;
		border-radius: 22px;
	}

	.section--latest-posts .post-grid,
	.section--seo-links .internal-links__grid,
	.section--category-context-links .internal-links__grid {
		grid-template-columns: 1fr;
	}

	.section--latest-posts .section-heading--home h2,
	.section--seo-links .section-heading--home h2,
	.section--category-context-links .section-heading--category-context h2 {
		max-width: none;
	}
}

/* 2026 Editorial Redesign */

:root {
	--color-primary: #487185;
	--color-primary-strong: #355867;
	--color-accent: #d4ab7c;
	--color-text: #1f2529;
	--color-muted: #626a71;
	--color-border: rgba(72, 113, 133, 0.12);
	--color-surface: rgba(255, 255, 255, 0.92);
	--color-surface-alt: #f6f6f2;
	--color-tint: #eef3f4;
	--shadow-soft: 0 22px 48px rgba(18, 35, 44, 0.08);
	--shadow-card: 0 18px 38px rgba(18, 35, 44, 0.07);
	--radius-s: 16px;
	--radius-m: 26px;
	--radius-l: 42px;
	--shell: 1200px;
	--shell-narrow: 900px;
}

body {
	font-size: 16.5px;
	line-height: 1.78;
	color: var(--color-text);
	background:
		radial-gradient(circle at top left, rgba(230, 184, 125, 0.08), transparent 26%),
		radial-gradient(circle at 100% 10%, rgba(72, 113, 133, 0.08), transparent 24%),
		linear-gradient(180deg, #fcfcfa 0%, #f7f7f3 48%, #f4f5f2 100%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #1c2328;
	letter-spacing: -0.045em;
}

h1 {
	font-size: clamp(3.3rem, 7vw, 6rem);
	line-height: 0.95;
}

h2 {
	font-size: clamp(2.25rem, 4.2vw, 3.9rem);
	line-height: 0.97;
}

h3 {
	font-size: clamp(1.25rem, 1.9vw, 1.75rem);
	line-height: 1.1;
}

p:last-child,
.entry-content > *:last-child,
.section-heading__text p:last-child,
.newsletter-box__text p:last-child {
	margin-bottom: 0;
}

.shell {
	width: min(calc(100% - 2rem), var(--shell));
}

.shell--narrow {
	width: min(calc(100% - 2rem), var(--shell-narrow));
}

.section,
.page-intro {
	padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.hero-section {
	position: relative;
	padding: clamp(5rem, 9vw, 8rem) 0 clamp(4.5rem, 8vw, 7rem);
	overflow: clip;
	isolation: isolate;
}

.hero-section::before,
.hero-section::after {
	content: "";
	position: absolute;
	inset: auto;
	border-radius: 50%;
	pointer-events: none;
}

.hero-section::before {
	top: -18rem;
	left: -8rem;
	width: 42rem;
	height: 42rem;
	background: radial-gradient(circle, rgba(230, 184, 125, 0.22), rgba(230, 184, 125, 0));
}

.hero-section::after {
	right: -10rem;
	bottom: -14rem;
	width: 38rem;
	height: 38rem;
	background: radial-gradient(circle, rgba(72, 113, 133, 0.18), rgba(72, 113, 133, 0));
}

.hero-section__grid {
	width: min(calc(100% - 2rem), 1380px);
	margin-inline: auto;
	padding-inline-start: max(0px, calc((min(1380px, calc(100vw - 2rem)) - min(var(--shell), calc(100vw - 2rem))) / 2));
	padding-inline-end: max(0px, calc((min(1380px, calc(100vw - 2rem)) - min(var(--shell), calc(100vw - 2rem))) / 2));
	grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
	align-items: center;
	gap: clamp(2rem, 4vw, 4.5rem);
	padding-block: 0;
	border: 0;
	border-radius: 0;
	background: none;
	box-shadow: none;
	overflow: visible;
}

.hero-section__content {
	display: grid;
	gap: 1.2rem;
	max-width: 700px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: none;
	backdrop-filter: none;
}

.hero-section__content::before,
.hero-section__content::after {
	display: none;
}

.hero-section__eyebrow,
.section-heading__eyebrow,
.newsletter-box__eyebrow,
.site-footer__eyebrow {
	gap: 0.7rem;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.hero-section__eyebrow::before,
.section-heading__eyebrow::before,
.newsletter-box__eyebrow::before,
.site-footer__eyebrow::before {
	width: 2.4rem;
	background: linear-gradient(90deg, rgba(72, 113, 133, 0.75), rgba(212, 171, 124, 0.65));
}

.hero-section h1 {
	max-width: 11ch;
	margin-bottom: 0;
}

.hero-section__text,
.section-heading__text,
.page-intro__text {
	font-size: clamp(1rem, 1.35vw, 1.12rem);
	line-height: 1.82;
	color: var(--color-muted);
}

.hero-section__text {
	max-width: 52ch;
}

.hero-section__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 0.3rem;
}

.hero-section__visual {
	position: relative;
	display: grid;
	align-items: end;
	justify-self: end;
	width: 100%;
	min-height: min(72vh, 760px);
	padding: 1.5rem 0 1.5rem 2rem;
}

.hero-section__visual::before {
	content: "";
	position: absolute;
	inset: 4% 6% 18% 20%;
	border-radius: 42px;
	background:
		linear-gradient(160deg, rgba(72, 113, 133, 0.16), rgba(72, 113, 133, 0.02)),
		linear-gradient(200deg, rgba(230, 184, 125, 0.24), rgba(230, 184, 125, 0));
	transform: rotate(-8deg);
}

.hero-section__visual::after {
	content: "";
	position: absolute;
	inset: 12% 14% 8% 0;
	border: 1px solid rgba(72, 113, 133, 0.12);
	border-radius: 46px;
	transform: rotate(5deg);
}

.hero-section__media {
	position: relative;
	z-index: 2;
	padding: 0;
}

.hero-section__media::before,
.hero-section__media::after {
	content: "";
	position: absolute;
	pointer-events: none;
}

.hero-section__media::before {
	left: -2.2rem;
	bottom: 3rem;
	width: 5.5rem;
	height: 16rem;
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(72, 113, 133, 0.14));
	filter: blur(0.2px);
}

.hero-section__media::after {
	right: 8%;
	bottom: -0.75rem;
	width: 56%;
	height: 2.4rem;
	border-radius: 999px;
	background: rgba(16, 28, 34, 0.18);
	filter: blur(24px);
	opacity: 0.65;
}

.hero-section__media img {
	position: relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 4 / 4.95;
	object-fit: cover;
	border: 10px solid rgba(255, 255, 255, 0.88);
	border-radius: 36px;
	box-shadow: 0 38px 78px rgba(17, 31, 37, 0.16);
}

.hero-section__media-card {
	position: absolute;
	left: 0;
	bottom: 2.2rem;
	z-index: 3;
	display: grid;
	gap: 0.25rem;
	min-width: 220px;
	padding: 1rem 1.1rem;
	border: 1px solid rgba(72, 113, 133, 0.08);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 22px 44px rgba(17, 31, 37, 0.12);
	backdrop-filter: blur(12px);
}

.hero-section__media-card span {
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-primary);
}

.hero-section__media-card strong {
	font-family: var(--font-serif);
	font-size: 1.35rem;
	font-weight: 600;
	line-height: 1.05;
	color: var(--color-text);
}

.section-heading,
.section-heading--home,
.section-heading--featured,
.section-heading--home-about,
.section-heading--about-manifesto,
.section-heading--product-overview {
	display: grid;
	gap: 0.85rem;
	max-width: 860px;
	margin-bottom: 2.4rem;
	padding: 0;
}

.section-heading::before,
.section-heading::after,
.section-heading h2::after,
.section-heading--home h2::before {
	display: none;
}

.section-heading h2,
.section-heading--home h2,
.section-heading--featured h2,
.section-heading--about-manifesto h2,
.section-heading--product-overview h2 {
	margin: 0;
	padding: 0;
	max-width: 14ch;
}

.section-heading__text {
	max-width: 60ch;
}

.eyebrow,
.entry-meta {
	font-size: 0.74rem;
	letter-spacing: 0.16em;
	color: var(--color-primary);
}

.button,
.single_add_to_cart_button,
.product-summary__purchase .button {
	min-height: 54px;
	padding: 0.95rem 1.55rem;
	border: 1px solid transparent;
	border-radius: 999px;
	background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-strong) 100%);
	box-shadow: 0 16px 34px rgba(72, 113, 133, 0.2);
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.button:hover,
.button:focus-visible,
.single_add_to_cart_button:hover,
.single_add_to_cart_button:focus-visible {
	background: linear-gradient(180deg, #4f7b90 0%, #335363 100%);
	transform: translateY(-2px);
}

.button--ghost {
	border-color: rgba(72, 113, 133, 0.15);
	background: rgba(255, 255, 255, 0.72);
	color: var(--color-primary);
	box-shadow: none;
}

.button--ghost:hover,
.button--ghost:focus-visible {
	background: rgba(72, 113, 133, 0.08);
	color: var(--color-primary);
}

.text-link {
	gap: 0.45rem;
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.site-header {
	top: 0;
	border-bottom: 1px solid rgba(72, 113, 133, 0.08);
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 18px 36px rgba(19, 36, 45, 0.04);
	backdrop-filter: blur(18px);
}

.site-header__inner {
	grid-template-columns: auto 1fr auto auto;
	gap: 0.9rem 1.5rem;
	min-height: 80px;
	padding: 0.7rem 0;
}

.site-header__inner--no-cta {
	grid-template-columns: auto 1fr auto auto;
}

.site-header__inner--no-utilities {
	grid-template-columns: auto 1fr auto auto;
}

.site-header__inner--no-utilities.site-header__inner--no-cta {
	grid-template-columns: auto 1fr auto;
}

.site-navigation {
	justify-self: end;
	width: max-content;
	margin-left: auto;
}

.site-logo {
	max-height: 48px;
}

.menu--primary {
	gap: 0.15rem;
	padding-block: 0.22rem;
	padding-inline: 0;
	border: 1px solid rgba(72, 113, 133, 0.08);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 12px 28px rgba(18, 35, 44, 0.04);
	justify-content: flex-end;
}

.menu--primary a {
	padding: 0.7rem 0.95rem;
	border-radius: 999px;
	font-size: 0.73rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: rgba(31, 37, 41, 0.86);
}

.menu--primary a:hover,
.menu--primary a:focus-visible {
	background: rgba(72, 113, 133, 0.08);
	color: var(--color-primary);
}

.site-header__cta {
	padding-inline: 1.2rem;
}

.site-language-switcher {
	justify-self: end;
}

.site-language-switcher__trigger {
	min-height: 2.9rem;
	padding: 0.22rem 2rem 0.22rem 0.78rem;
}

.site-language-switcher__code {
	font-size: 0.72rem;
	letter-spacing: 0.14em;
}

.page-intro {
	position: relative;
	padding-bottom: 2.5rem;
}

.page-intro__copy {
	max-width: 56rem;
	gap: 1.1rem;
}

.page-intro__copy h1 {
	max-width: 12ch;
}

.page-intro--shop {
	padding-bottom: 1.2rem;
}

.page-intro--shop .shell {
	position: relative;
}

.page-intro--shop .breadcrumbs {
	position: relative;
	z-index: 1;
	margin-bottom: 1.35rem;
}

.page-intro--shop .page-intro__copy {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(240px, 31ch);
	align-items: end;
	column-gap: clamp(1.25rem, 2vw, 1.8rem);
	max-width: none;
	padding: clamp(0.4rem, 1vw, 0.8rem) 0 clamp(1.35rem, 2vw, 1.75rem);
	justify-items: start;
	gap: 0.9rem;
	isolation: isolate;
}

.page-intro--shop .page-intro__copy::before {
	content: "";
	position: absolute;
	top: -1.8rem;
	left: -2rem;
	width: clamp(9rem, 18vw, 14rem);
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(230, 184, 125, 0.18), transparent 72%);
	pointer-events: none;
}

.page-intro--shop .page-intro__copy::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: linear-gradient(90deg, rgba(72, 113, 133, 0.28), rgba(230, 184, 125, 0.36), rgba(72, 113, 133, 0));
	pointer-events: none;
}

.page-intro--shop .page-intro__copy > * {
	position: relative;
	z-index: 1;
}

.page-intro--shop .eyebrow {
	grid-column: 1;
	grid-row: 1;
	width: max-content;
	margin: 0;
	padding: 0.45rem 0.82rem;
	border: 1px solid rgba(72, 113, 133, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.74);
	box-shadow: 0 12px 28px rgba(20, 43, 53, 0.06);
}

.page-intro--shop .page-intro__copy h1 {
	grid-column: 1 / -1;
	grid-row: 2;
	width: 100%;
	max-width: none;
	margin: 0;
	padding-inline: 0;
	font-size: clamp(2rem, 3.2vw, 3.05rem);
	line-height: 0.98;
	letter-spacing: -0.035em;
	white-space: nowrap;
}

.page-intro--shop .page-intro__text {
	grid-column: 2;
	grid-row: 1;
	align-self: end;
	max-width: 31ch;
	padding-left: clamp(1.25rem, 2vw, 1.8rem);
	border-left: 1px solid rgba(72, 113, 133, 0.12);
	font-size: 0.98rem;
	line-height: 1.85;
}

.page-intro--blog .page-intro__copy h1 {
	white-space: normal;
	max-width: 12ch;
}

.page-intro--blog .page-intro__text {
	max-width: 34ch;
}

.breadcrumbs {
	margin-bottom: 1.2rem;
}

.breadcrumbs__list {
	gap: 0.5rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(98, 106, 113, 0.9);
}

.featured-books-stage,
.newsletter-stage {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: none;
	box-shadow: none;
}

.featured-books-stage::before,
.section--featured-books::before,
.section--home-about::before,
.section--home-about::after,
.section--home-about .shell::before,
.section--newsletter::before,
.section--latest-posts .shell::before,
.home-about__frame::before,
.home-about__frame::after,
.site-footer::before,
.site-footer--editorial-dark::before {
	display: none;
}

.section--featured-books,
.section--catalog,
.section--latest-posts {
	background: transparent;
}

.section--featured-books {
	position: relative;
	overflow: clip;
	padding-top: clamp(4rem, 7vw, 6rem);
	padding-bottom: clamp(4rem, 7vw, 6rem);
	background:
		radial-gradient(circle at 14% 26%, rgba(230, 184, 125, 0.28), transparent 24%),
		radial-gradient(circle at 84% 14%, rgba(72, 113, 133, 0.18), transparent 28%),
		linear-gradient(180deg, #f4eadb 0%, #e8f0f2 100%);
}

.section--featured-books::before {
	content: "";
	position: absolute;
	inset: 1.35rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.55);
	border-bottom: 1px solid rgba(72, 113, 133, 0.05);
	pointer-events: none;
}

.section--featured-books::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 1.2rem;
	width: min(92%, 1120px);
	height: 10rem;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(72, 113, 133, 0.12), transparent 72%);
	transform: translateX(-50%);
	pointer-events: none;
}

.section--featured-books .section-heading--featured {
	align-items: end;
}

.section--featured-books .section-heading__eyebrow {
	padding: 0.45rem 0.8rem;
	border: 1px solid rgba(72, 113, 133, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.7);
	box-shadow: 0 12px 26px rgba(20, 43, 53, 0.06);
}

.section--featured-books .section-heading__eyebrow::before {
	display: none;
}

.section--featured-books .section-heading--featured h2 {
	max-width: none;
	white-space: nowrap;
}

.section--featured-books .section-heading--featured .section-heading__text:empty {
	display: none;
}

.featured-book-grid,
.catalog-book-grid,
.products,
.benefit-grid,
.post-grid {
	gap: 1.4rem;
}

.home-book-card {
	transition: none;
}

.home-book-card:hover,
.home-book-card:focus-within {
	transform: none;
}

.home-book-card__frame {
	padding: 0.5rem;
	border: 1px solid rgba(72, 113, 133, 0.08);
	border-radius: 32px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: var(--shadow-card);
	backdrop-filter: blur(10px);
}

.home-book-card__frame::before,
.home-book-card__frame::after,
.home-book-card__body::before {
	display: none;
}

.home-book-card--featured .home-book-card__frame {
	grid-template-columns: 1fr;
	grid-template-rows: auto auto auto;
	gap: 1rem;
	border-color: rgba(72, 113, 133, 0.12);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72)),
		linear-gradient(135deg, rgba(230, 184, 125, 0.08), rgba(72, 113, 133, 0.05));
	box-shadow: 0 24px 52px rgba(20, 43, 53, 0.1);
}

.home-book-card__featured-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 2.55rem;
	padding: 0.45rem 0.9rem;
	border: 1px solid rgba(72, 113, 133, 0.12);
	border-radius: 16px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 238, 226, 0.94)),
		linear-gradient(90deg, rgba(230, 184, 125, 0.18), rgba(72, 113, 133, 0.08));
	box-shadow: 0 14px 30px rgba(19, 31, 38, 0.08);
	color: #233640;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-align: center;
	text-transform: uppercase;
}

.home-book-card__media {
	border-radius: 26px;
	background: linear-gradient(180deg, rgba(72, 113, 133, 0.12), rgba(212, 171, 124, 0.15));
}

.home-book-card__featured-top {
	display: grid;
	grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
	align-items: start;
	gap: 1.45rem;
	min-width: 0;
}

.home-book-card__media--featured {
	max-width: 18rem;
	width: 100%;
}

.home-book-card__media::after {
	left: 12%;
	right: 12%;
	bottom: 0.5rem;
	height: 1.4rem;
	border-radius: 999px;
	background: rgba(18, 28, 34, 0.16);
	filter: blur(18px);
}

.home-book-card__media img {
	border-radius: 26px;
	box-shadow: 0 22px 44px rgba(19, 31, 38, 0.1);
}

.home-book-card__badge {
	top: 0.85rem;
	left: 0.85rem;
	padding: 0.45rem 0.78rem;
	border: 1px solid rgba(72, 113, 133, 0.08);
	background: linear-gradient(180deg, #ffffff 0%, #f7efe4 100%);
	box-shadow: 0 12px 28px rgba(19, 31, 38, 0.12);
	color: #233640;
}

.home-book-card__body {
	gap: 1rem;
	padding: 1.2rem 1rem 1rem;
}

.home-book-card--featured .home-book-card__body--featured-top {
	display: grid;
	grid-template-rows: auto auto auto;
	align-content: start;
	gap: 0.8rem;
	min-width: 0;
	padding: 0.15rem 0 0;
}

.home-book-card__top {
	gap: 0.65rem;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
}

.home-book-card__top .eyebrow,
.product-card__top .eyebrow {
	margin: 0;
	align-items: center;
	line-height: 1;
}

.home-book-card__status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	flex: 0 0 auto;
	padding: 0.3rem 0.55rem;
	background: rgba(72, 113, 133, 0.08);
	font-size: 0.62rem;
	line-height: 1;
}

.home-book-card__title {
	font-size: clamp(1.1rem, 1.55vw, 1.4rem);
	line-height: 1.12;
}

.home-book-card--featured .home-book-card__title {
	width: 100%;
	max-width: none;
	padding-inline: 0;
	font-size: clamp(1.35rem, 1.9vw, 1.78rem);
	line-height: 1.04;
	min-height: 3.12em;
}

.home-book-card--featured .home-book-card__title a {
	display: block;
	padding-inline: 0;
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.home-book-card__featured-band {
	display: block;
	padding-top: 0.8rem;
	border-top: 1px solid rgba(72, 113, 133, 0.1);
}

.home-book-card__specs {
	gap: 0.75rem 1rem;
	margin-top: 0.15rem;
}

.home-book-card__specs--featured-top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.55rem 0.9rem;
	margin: 0;
	width: 100%;
	align-content: start;
	padding-top: 0.2rem;
}

.home-book-card__specs li {
	gap: 0.25rem;
	padding: 0.75rem 0 0;
	border: 0;
	border-top: 1px solid rgba(72, 113, 133, 0.1);
	border-radius: 0;
	background: none;
}

.home-book-card__specs--featured-top li {
	display: inline-flex;
	align-items: baseline;
	gap: 0.35rem;
	min-height: 0;
	padding: 0;
	border-top: 0;
	white-space: nowrap;
}

.home-book-card__specs--featured-top li:only-child {
	grid-column: auto;
}

.home-book-card__specs--featured-top li:not(:last-child)::after {
	content: "·";
	color: rgba(72, 113, 133, 0.42);
	margin-left: 0.1rem;
}

.home-book-card__specs strong {
	font-size: 0.54rem;
}

.home-book-card__specs span {
	font-size: 0.78rem;
	line-height: 1.45;
	color: rgba(31, 37, 41, 0.82);
}

.home-book-card__specs--featured-top strong {
	font-size: 0.6rem;
	letter-spacing: 0.12em;
}

.home-book-card__specs--featured-top span {
	font-size: 0.82rem;
	line-height: 1.2;
}

.home-book-card__footer {
	padding-top: 0.9rem;
	border-top: 1px solid rgba(72, 113, 133, 0.1);
}

.home-book-card__footer--featured-band {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
	padding-top: 0;
	border-top: 0;
}

.home-book-card__footer .price {
	font-size: 1.12rem;
	font-weight: 600;
}

.home-book-card--featured .home-book-card__footer .price {
	display: inline-flex;
	align-items: center;
	min-height: 0;
	padding: 0;
	border-radius: 0;
	background: none;
	box-shadow: none;
	font-size: 1.48rem;
	line-height: 1;
	letter-spacing: -0.03em;
}

.home-book-card__footer--featured-band .text-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.65rem;
	padding: 0.55rem 1rem;
	min-width: 10.75rem;
	flex: 0 0 auto;
	border-radius: 999px;
	background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-strong) 100%);
	box-shadow: 0 14px 30px rgba(72, 113, 133, 0.18);
	color: #ffffff;
	font-size: 0.64rem;
	letter-spacing: 0.15em;
}

.home-book-card__footer--featured-band .text-link:hover,
.home-book-card__footer--featured-band .text-link:focus-visible {
	color: #ffffff;
	transform: translateY(-1px);
}

.featured-book-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
	align-items: stretch;
}

.home-book-card--featured .home-book-card__frame {
	grid-template-columns: 1fr;
	grid-template-rows: auto 1fr;
	gap: 0;
	border-color: rgba(230, 184, 125, 0.32);
	background:
		linear-gradient(180deg, rgba(251, 245, 235, 0.96), rgba(255, 252, 248, 0.92)),
		linear-gradient(135deg, rgba(230, 184, 125, 0.16), rgba(72, 113, 133, 0.03));
	box-shadow: 0 24px 54px rgba(20, 43, 53, 0.1);
}

.home-book-card--featured .home-book-card__frame::before {
	display: none;
}

.home-book-card__featured-badge {
	display: none;
}

.home-book-card--featured .home-book-card__media--featured {
	max-width: none;
	width: 100%;
}

.home-book-card--featured .home-book-card__body--featured-curated {
	display: flex;
	flex-direction: column;
	gap: 0.48rem;
	padding: 1rem 1rem 0.95rem;
}

.home-book-card--featured .home-book-card__title {
	width: 100%;
	max-width: none;
	min-height: 0;
	padding-inline: 0;
	font-size: clamp(1.06rem, 1.2vw, 1.18rem);
	line-height: 1.15;
}

.home-book-card--featured .home-book-card__title a {
	display: -webkit-box;
	padding-inline: 0;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.home-book-card--featured .home-book-card__specs--featured-curated {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: -0.08rem;
}

.home-book-card--featured .home-book-card__footer--featured-curated {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.8rem;
	margin-top: auto;
	padding-top: 0.78rem;
}

.home-book-card--featured .home-book-card__footer--featured-curated .price {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.7rem;
	padding: 0.42rem 0.9rem;
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 246, 248, 0.98));
	box-shadow:
		inset 0 0 0 1px rgba(72, 113, 133, 0.1),
		0 10px 24px rgba(20, 43, 53, 0.08);
	font-size: 1.08rem;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.01em;
	color: var(--color-primary);
}

.home-book-card--featured .home-book-card__footer--featured-curated .text-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.7rem;
	padding: 0.5rem 1rem;
	min-width: 9.5rem;
	flex: 0 0 auto;
	border-radius: 999px;
	background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-strong) 100%);
	box-shadow: 0 14px 28px rgba(72, 113, 133, 0.18);
	color: #ffffff;
	font-size: 0.64rem;
	letter-spacing: 0.15em;
}

.home-book-card--featured .home-book-card__footer--featured-curated .text-link:hover,
.home-book-card--featured .home-book-card__footer--featured-curated .text-link:focus-visible {
	color: #ffffff;
	transform: translateY(-1px);
}

.section__footer {
	margin-top: 2.4rem;
}

.section--home-about {
	background: linear-gradient(180deg, rgba(243, 245, 244, 0.7), rgba(238, 243, 244, 0.92));
}

.home-about {
	grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.97fr);
	align-items: center;
	gap: clamp(2rem, 4vw, 4rem);
}

.home-about__content {
	display: grid;
	gap: 1.6rem;
}

.home-about__note {
	padding-left: 1.2rem;
	border-left: 1px solid rgba(72, 113, 133, 0.14);
	background: none;
}

.home-about__note-title {
	margin-bottom: 0.5rem;
	font-size: 0.85rem;
	font-family: var(--font-sans);
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--color-primary);
}

.home-about__note-text,
.home-about__note-text p {
	color: var(--color-muted);
}

.home-about__actions {
	margin-top: 0.3rem;
}

.home-about__visual {
	padding-left: 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: min(100%, 31rem);
	margin-inline-start: auto;
}

.home-about__visual::before {
	display: block;
	inset: 0.75rem 0.5rem -0.55rem 0.5rem;
}

.home-about__frame {
	padding: 0;
	background: none;
	border: 0;
	width: 100%;
	margin-inline-start: auto;
}

.home-about__media,
.home-about__placeholder {
	border-radius: 34px;
	box-shadow: 0 32px 70px rgba(18, 35, 44, 0.12);
}

.home-about__media {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 0;
}

.home-about__media img {
	border-radius: 34px;
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	aspect-ratio: auto;
	object-fit: contain;
	margin-inline: auto;
}

.home-about__placeholder {
	background:
		repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0, rgba(255, 255, 255, 0.045) 1px, transparent 1px, transparent 20px),
		linear-gradient(180deg, #26404d, #172126);
}

.section--newsletter {
	padding-top: clamp(4rem, 8vw, 6.5rem);
	padding-bottom: clamp(4rem, 8vw, 6.5rem);
}

.section--newsletter .shell--narrow {
	width: min(calc(100% - 2rem), 1220px);
}

.newsletter-stage {
	padding: clamp(2rem, 4vw, 3rem);
	border-radius: 40px;
	background: linear-gradient(140deg, #182126 0%, #202a30 42%, #2a3a44 100%);
	box-shadow: 0 32px 76px rgba(11, 20, 26, 0.18);
}

.section--newsletter .newsletter-box,
.newsletter-box--home-premium {
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
	gap: clamp(1.5rem, 3vw, 3rem);
	align-items: center;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: none;
}

.section--newsletter .newsletter-box__content,
.newsletter-box--home-premium .newsletter-box__content {
	display: grid;
	align-content: center;
	gap: 1rem;
	max-width: 34rem;
	padding-top: 0.35rem;
}

.section--newsletter .newsletter-box::before,
.section--newsletter .newsletter-box::after,
.newsletter-box--home-premium .newsletter-box__form::before {
	display: none;
}

.section--newsletter .newsletter-box__title {
	max-width: 10ch;
	margin: 0;
	color: #ffffff;
	font-size: clamp(2.2rem, 4.4vw, 4rem);
	line-height: 0.98;
}

.section--newsletter .newsletter-box__text,
.section--newsletter .newsletter-box__text p,
.section--newsletter .newsletter-box__eyebrow {
	color: rgba(247, 249, 250, 0.76);
}

.section--newsletter .newsletter-box__form {
	position: relative;
	display: grid;
	align-content: center;
	justify-items: stretch;
	align-self: stretch;
	padding: 1.6rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 32px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08)),
		radial-gradient(circle at top left, rgba(230, 184, 125, 0.13), transparent 34%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 58px rgba(7, 14, 19, 0.22);
	backdrop-filter: blur(14px);
}

.section--newsletter .newsletter-box__form > * {
	position: relative;
	z-index: 1;
}

.section--newsletter .newsletter-box__form::after {
	content: "";
	position: absolute;
	inset: 1rem;
	border-radius: 24px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	pointer-events: none;
}

.section--newsletter .newsletter-box__form form,
.section--newsletter .newsletter-box__form .mc4wp-form-fields,
.section--newsletter .newsletter-box__form .tnp-subscription,
.section--newsletter .newsletter-box__form .mailpoet_form,
.section--newsletter .newsletter-box__form .fluentform {
	display: grid;
	gap: 0.9rem;
	width: 100%;
	align-self: center;
}

.section--newsletter .newsletter-box__form p,
.section--newsletter .newsletter-box__form .form-group,
.section--newsletter .newsletter-box__form .mailpoet_paragraph,
.section--newsletter .newsletter-box__form .tnp-field {
	margin: 0;
}

.section--newsletter .newsletter-box__form label {
	display: grid;
	gap: 0.45rem;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.68);
}

.section--newsletter .newsletter-box__form ::placeholder {
	color: rgba(56, 68, 74, 0.58);
}

.section--newsletter .newsletter-box input[type="email"],
.section--newsletter .newsletter-box input[type="text"],
.section--newsletter .newsletter-box input[type="tel"],
.section--newsletter .newsletter-box input[type="url"],
.section--newsletter .newsletter-box textarea,
.section--newsletter .newsletter-box select {
	min-height: 56px;
	padding: 0.95rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.96);
	color: var(--color-text);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.section--newsletter .newsletter-box textarea {
	min-height: 132px;
	resize: vertical;
}

.section--newsletter .newsletter-box input[type="email"]:focus,
.section--newsletter .newsletter-box input[type="text"]:focus,
.section--newsletter .newsletter-box input[type="tel"]:focus,
.section--newsletter .newsletter-box input[type="url"]:focus,
.section--newsletter .newsletter-box textarea:focus,
.section--newsletter .newsletter-box select:focus {
	border-color: rgba(230, 184, 125, 0.78);
	box-shadow: 0 0 0 4px rgba(230, 184, 125, 0.16);
	outline: 0;
}

.section--newsletter .newsletter-box input[type="submit"],
.section--newsletter .newsletter-box button,
.section--newsletter .newsletter-box .button {
	width: 100%;
	min-height: 56px;
	padding-inline: 1.4rem;
	border: 0;
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(238, 244, 247, 0.92) 55%, rgba(230, 184, 125, 0.52) 100%);
	color: var(--color-primary-strong);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 18px 34px rgba(7, 14, 19, 0.16);
}

.section--newsletter .newsletter-box input[type="submit"]:hover,
.section--newsletter .newsletter-box button:hover,
.section--newsletter .newsletter-box .button:hover,
.section--newsletter .newsletter-box input[type="submit"]:focus-visible,
.section--newsletter .newsletter-box button:focus-visible,
.section--newsletter .newsletter-box .button:focus-visible {
	transform: translateY(-2px);
	color: var(--color-primary-strong);
	box-shadow: 0 22px 40px rgba(7, 14, 19, 0.2);
}

.section--newsletter .newsletter-box .mc4wp-response,
.section--newsletter .newsletter-box .mailpoet_message,
.section--newsletter .newsletter-box .fluentform .ff-el-group:last-child {
	margin-top: 0.35rem;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.74);
}

.section--latest-posts .shell {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: none;
	box-shadow: none;
}

.section--latest-posts .post-grid {
	gap: 1.4rem;
}

.post-card {
	border: 1px solid rgba(72, 113, 133, 0.08);
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.74);
	box-shadow: var(--shadow-card);
	backdrop-filter: blur(10px);
}

.post-card:hover,
.post-card:focus-within {
	transform: translateY(-5px);
	box-shadow: 0 26px 54px rgba(18, 35, 44, 0.1);
}

.post-card__content {
	padding: 1.25rem 1.1rem 1.15rem;
}

.post-card__media,
.product-card__media {
	display: block;
	overflow: hidden;
	border-radius: 24px;
}

.post-card__media {
	padding: 0.5rem 0.5rem 0;
}

.post-card__media img {
	border-radius: 22px;
}

.post-card__title {
	font-size: clamp(1.1rem, 1.6vw, 1.45rem);
}

.post-card__excerpt {
	font-size: 0.96rem;
	line-height: 1.7;
	color: var(--color-muted);
}

.section--seo-links {
	background: linear-gradient(180deg, rgba(245, 244, 239, 0.8), rgba(250, 250, 247, 0.96));
}

.section--seo-links .shell--narrow {
	width: min(calc(100% - 2rem), 1120px);
}

.internal-links__grid,
.section--seo-links .internal-links__grid,
.product-main__section .internal-links__grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.internal-links__item,
.section--seo-links .internal-links__item {
	gap: 0.65rem;
	padding: 1.3rem 1.35rem 1.4rem;
	border: 1px solid rgba(72, 113, 133, 0.08);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 16px 32px rgba(18, 35, 44, 0.05);
	backdrop-filter: blur(10px);
}

.internal-links__item::before,
.internal-links__item::after,
.section--seo-links .internal-links__item::before,
.section--seo-links .internal-links__item::after {
	display: none;
}

.internal-links__item strong,
.section--seo-links .internal-links__item strong {
	max-width: none;
	padding-right: 0;
	font-size: 1.08rem;
	line-height: 1.14;
}

.internal-links__item span {
	font-size: 0.92rem;
	line-height: 1.65;
	color: var(--color-muted);
}

.product-card__inner {
	display: grid;
	grid-template-rows: auto 1fr;
	padding: 0.5rem;
	border: 1px solid rgba(72, 113, 133, 0.08);
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: var(--shadow-card);
}

.product-card__media {
	align-self: start;
	aspect-ratio: 1 / 1;
	background: linear-gradient(180deg, rgba(72, 113, 133, 0.12), rgba(212, 171, 124, 0.15));
}

.product-card__media img {
	width: 100%;
	height: 100%;
	border-radius: 24px;
	box-shadow: 0 18px 34px rgba(18, 35, 44, 0.08);
	object-fit: cover;
}

.product-card__content {
	display: grid;
	gap: 0.9rem;
	padding: 1.1rem 0.9rem 0.95rem;
}

.product-card__top {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	gap: 0.65rem;
}

.product-card__status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	flex: 0 0 auto;
	padding: 0.3rem 0.55rem;
	border-radius: 999px;
	background: rgba(72, 113, 133, 0.08);
	color: var(--color-primary);
	font-size: 0.62rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.product-card__content .woocommerce-loop-product__title {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.16;
}

.product-card__content .woocommerce-loop-product__title a {
	color: var(--color-text);
}

.product-card__specs {
	display: grid;
	gap: 0.7rem;
	margin: 0.1rem 0 0;
	padding: 0;
	list-style: none;
}

.product-card__specs li {
	display: grid;
	gap: 0.22rem;
	padding-top: 0.7rem;
	border-top: 1px solid rgba(72, 113, 133, 0.1);
}

.product-card__specs strong {
	font-size: 0.54rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-primary);
}

.product-card__specs span {
	font-size: 0.8rem;
	line-height: 1.45;
	color: rgba(31, 37, 41, 0.82);
}

.product-card__footer {
	margin-top: auto;
	padding-top: 0.9rem;
	border-top: 1px solid rgba(72, 113, 133, 0.1);
}

.product-card__footer .price {
	font-size: 1.12rem;
	font-weight: 600;
}

.widget,
.empty-state {
	border: 1px solid rgba(72, 113, 133, 0.08);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: var(--shadow-card);
}

.product-hero--editorial {
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
	gap: clamp(2rem, 4vw, 4rem);
	align-items: start;
}

.product-main {
	gap: 1.9rem;
}

.product-main__header {
	grid-column: 1 / -1;
	grid-template-columns: minmax(0, 1.12fr) minmax(18rem, 0.88fr);
	column-gap: clamp(1.8rem, 4vw, 4rem);
	row-gap: 0.9rem;
	align-items: end;
	position: relative;
	max-width: none;
	padding: clamp(0.4rem, 1vw, 0.8rem) 0 clamp(1.35rem, 2vw, 1.75rem);
	margin-bottom: clamp(0.2rem, 0.8vw, 0.55rem);
}

.product-main__header::before {
	content: "";
	position: absolute;
	top: -2.1rem;
	left: -2.4rem;
	width: clamp(9rem, 18vw, 14rem);
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(230, 184, 125, 0.18), transparent 72%);
	pointer-events: none;
}

.product-main__header::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: linear-gradient(90deg, rgba(72, 113, 133, 0.28), rgba(230, 184, 125, 0.36), rgba(72, 113, 133, 0));
	pointer-events: none;
}

.product-main__header > * {
	position: relative;
	z-index: 1;
}

.product-main__header .eyebrow {
	grid-column: 1;
	grid-row: 1;
	width: max-content;
	margin: 0;
	padding: 0.45rem 0.82rem;
	border: 1px solid rgba(72, 113, 133, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.74);
	box-shadow: 0 12px 28px rgba(20, 43, 53, 0.06);
}

.product-main__header h1 {
	grid-column: 1 / -1;
	grid-row: 2;
	width: 100%;
	max-width: none;
	margin: 0;
	padding-inline: 0;
	font-size: clamp(2rem, 3.2vw, 3.05rem);
	line-height: 0.98;
	letter-spacing: -0.035em;
	text-align: left;
}

.product-main__lede {
	grid-column: 2;
	grid-row: 1;
	align-self: end;
	max-width: 31ch;
	padding-left: clamp(1.25rem, 2vw, 1.8rem);
	border-left: 1px solid rgba(72, 113, 133, 0.12);
	font-size: 0.98rem;
	line-height: 1.85;
	color: var(--color-muted);
}

.product-gallery {
	padding: 0;
	border: 0;
	background: none;
	box-shadow: none;
}

.product-gallery__main {
	padding: clamp(0.9rem, 1.6vw, 1.35rem);
	border-radius: 36px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(240, 244, 245, 0.94));
	box-shadow: 0 28px 62px rgba(18, 35, 44, 0.12);
}

.product-gallery__main img {
	border-radius: 28px;
	box-shadow: 0 22px 48px rgba(18, 35, 44, 0.1);
}

.product-gallery__thumbs {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.8rem;
}

.product-gallery__thumb {
	border: 1px solid rgba(72, 113, 133, 0.1);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.72);
}

.product-gallery__thumb.is-active {
	border-color: rgba(72, 113, 133, 0.28);
	box-shadow: 0 0 0 3px rgba(72, 113, 133, 0.08);
}

.product-overview-card,
.product-main__section {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: none;
	box-shadow: none;
}

.product-overview-card {
	gap: 0.38rem;
	padding-top: 0.65rem;
}

.product-overview-card .section-heading--product-overview h2,
.product-main__section .section-heading--product-overview h2 {
	max-width: none;
	white-space: nowrap;
}

.product-main__section {
	gap: 0.58rem;
	padding-top: 2.3rem;
	border-top: 1px solid rgba(72, 113, 133, 0.12);
}

.product-main__section .prose h2,
.product-main__section .prose h3,
.product-main__section .prose h4 {
	letter-spacing: -0.035em;
}

@media (min-width: 781px) {
	.product-main__section .prose h2 {
		font-size: clamp(1.45rem, 1.9vw, 1.7rem);
		line-height: 1.12;
	}

	.product-main__section .prose h3 {
		font-size: clamp(1.05rem, 1.25vw, 1.18rem);
		line-height: 1.22;
	}

	.product-main__section .prose h4 {
		font-size: 1rem;
		line-height: 1.28;
	}
}

.product-facts--overview {
	gap: 0.75rem 1.15rem;
}

.product-facts--overview .product-facts__item {
	gap: 0.35rem;
	padding: 0.75rem 0 0;
	border: 0;
	border-top: 1px solid rgba(72, 113, 133, 0.12);
	border-radius: 0;
	background: none;
}

.product-facts__item dt {
	font-size: 0.62rem;
}

.product-facts__item dd {
	font-size: 0.96rem;
}

.product-sidebar__sticky {
	position: static;
	top: 6rem;
	gap: 1rem;
}

.product-booking-card,
.product-trust-card {
	padding: 1.4rem;
	border: 1px solid rgba(72, 113, 133, 0.08);
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 24px 54px rgba(18, 35, 44, 0.1);
	backdrop-filter: blur(10px);
}

.product-booking-card {
	scroll-margin-top: 7.5rem;
}

.product-trust-card {
	background: linear-gradient(180deg, rgba(242, 246, 247, 0.96), rgba(255, 255, 255, 0.9));
}

.product-sidebar-featured.blog-shop-rail__sticky {
	top: 6rem;
	align-self: start;
}

.product-sidebar-featured__panel {
	gap: 1.15rem;
	padding: 1.4rem;
}

.product-sidebar-featured__header {
	display: grid;
	gap: 0.7rem;
}

.product-sidebar-featured__header h2 {
	margin: 0;
	font-size: 1.25rem;
	line-height: 1.08;
}

.product-sidebar-featured .blog-shop-mini {
	grid-template-columns: 92px minmax(0, 1fr);
}

.product-sidebar-featured .blog-shop-mini__title {
	font-size: 0.98rem;
}

.product-sidebar-featured .blog-shop-mini__footer {
	margin-top: 0.3rem;
}

.product-sidebar-featured__link {
	align-self: start;
}

.product-booking-card__header h2,
.product-trust-card h2 {
	font-size: 1.35rem;
	line-height: 1.08;
}

.product-booking-card__price-row {
	padding-bottom: 1.05rem;
	border-bottom: 1px solid rgba(72, 113, 133, 0.1);
}

.product-booking-card .product-summary__price {
	font-size: clamp(1.7rem, 2vw, 2.2rem);
}

.product-booking-card .product-summary__purchase .cart {
	gap: 0.85rem;
}

.product-summary__note,
.product-trust-card__intro,
.product-trust-list__item p,
.faq-item__content {
	color: var(--color-muted);
}

.faq-item {
	border: 1px solid rgba(72, 113, 133, 0.08);
	border-radius: 22px;
	background: rgba(249, 250, 249, 0.82);
}

.benefit-card {
	border: 1px solid rgba(72, 113, 133, 0.08);
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.74);
	box-shadow: var(--shadow-card);
}

.cta-panel {
	border: 1px solid rgba(72, 113, 133, 0.1);
	border-radius: 34px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(239, 244, 245, 0.92));
	box-shadow: 0 28px 62px rgba(18, 35, 44, 0.08);
}

.section--product-cta {
	padding-top: clamp(1.8rem, 3.2vw, 2.6rem);
	padding-bottom: clamp(2.1rem, 3.8vw, 3rem);
}

.section--product-cta .cta-panel--product {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	justify-items: center;
	align-items: center;
	gap: 1rem;
	padding: clamp(1.55rem, 2.6vw, 2.15rem) clamp(1.55rem, 3vw, 2.6rem);
	border: 1px solid rgba(72, 113, 133, 0.12);
	border-radius: 36px;
	background:
		radial-gradient(circle at 12% 18%, rgba(230, 184, 125, 0.22), transparent 28%),
		radial-gradient(circle at 88% 82%, rgba(72, 113, 133, 0.16), transparent 26%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 244, 245, 0.95) 56%, rgba(250, 245, 239, 0.94) 100%);
	box-shadow: 0 30px 72px rgba(18, 35, 44, 0.1);
	overflow: hidden;
	isolation: isolate;
}

.section--product-cta .cta-panel--product::before,
.section--product-cta .cta-panel--product::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	pointer-events: none;
	z-index: 0;
}

.section--product-cta .cta-panel--product::before {
	top: -3.5rem;
	right: -2.4rem;
	width: 13rem;
	height: 13rem;
	background: radial-gradient(circle, rgba(230, 184, 125, 0.3), rgba(230, 184, 125, 0));
}

.section--product-cta .cta-panel--product::after {
	left: -2rem;
	bottom: -4.25rem;
	width: 12rem;
	height: 12rem;
	background: radial-gradient(circle, rgba(72, 113, 133, 0.18), rgba(72, 113, 133, 0));
}

.product-cta__copy,
.product-cta__actions {
	position: relative;
	z-index: 1;
}

.product-cta__copy {
	display: grid;
	gap: 0.5rem;
	max-width: 58rem;
	justify-items: center;
	text-align: center;
}

.section--product-cta .cta-panel--product h2 {
	margin: 0;
	max-width: none;
	font-size: clamp(2rem, 3.3vw, 3.15rem);
	line-height: 0.98;
}

.product-cta__actions {
	display: grid;
	justify-items: center;
	gap: 0;
}

.section--product-cta .button-row {
	justify-content: center;
}

.section--product-cta .button-row .button {
	min-width: 220px;
	box-shadow: 0 18px 36px rgba(72, 113, 133, 0.16);
}

@media (max-width: 980px) {
	.section--product-cta .cta-panel--product {
		gap: 0.9rem;
	}

	.product-cta__actions {
		justify-items: center;
	}

	.section--product-cta .button-row {
		justify-content: center;
	}
}

.section--benefits .section-heading {
	max-width: none;
	padding-inline: 0;
}

.section--benefits .section-heading h2 {
	max-width: none;
	padding-inline: 0;
	white-space: normal;
	text-wrap: balance;
	overflow-wrap: anywhere;
	font-size: clamp(2rem, 3.3vw, 3.15rem);
	line-height: 0.98;
}

.section--related-products .section-heading h2 {
	max-width: none;
	font-size: clamp(2rem, 3.3vw, 3.15rem);
	line-height: 0.98;
}

.shop-toolbar {
	margin-bottom: 1.35rem;
	padding: 1rem 1.1rem;
	border: 1px solid rgba(72, 113, 133, 0.08);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.76);
}

.section--shop-archive {
	padding-top: 1rem;
}

.section--category-context-links {
	padding-top: clamp(1.2rem, 2.4vw, 1.8rem);
	padding-bottom: 0;
	background: none;
}

.section--category-seo-copy {
	padding-top: clamp(1.35rem, 2.6vw, 2rem);
	padding-bottom: 0;
	background: none;
}

.section--category-seo-copy .category-seo-copy {
	position: relative;
	padding: clamp(1.45rem, 2.8vw, 2rem) clamp(1.25rem, 2.6vw, 1.8rem);
	border-top: 1px solid rgba(72, 113, 133, 0.14);
	border-radius: 0 0 28px 28px;
	background:
		radial-gradient(circle at top left, rgba(230, 184, 125, 0.12), transparent 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 249, 250, 0.96));
	box-shadow: 0 18px 38px rgba(20, 43, 53, 0.05);
}

.section-heading--category-seo {
	max-width: none;
	margin-bottom: 1rem;
	padding: 0;
}

.section-heading--category-seo::before,
.section-heading--category-seo::after,
.section-heading--category-seo h2::after {
	display: none;
}

.section-heading--category-seo .section-heading__eyebrow {
	width: max-content;
	margin: 0;
	padding: 0.42rem 0.82rem;
	border: 1px solid rgba(72, 113, 133, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 0 12px 28px rgba(20, 43, 53, 0.05);
}

.section-heading--category-seo .section-heading__eyebrow::before {
	display: none;
}

.section-heading--category-seo h2 {
	margin: 0;
	padding: 0;
	max-width: none;
	font-size: clamp(1.65rem, 2.5vw, 2.15rem);
	line-height: 0.98;
	letter-spacing: -0.035em;
}

.category-seo-copy__content {
	max-width: 78ch;
	color: var(--color-muted);
}

.category-seo-copy__content > * + * {
	margin-top: 1rem;
}

.category-seo-copy__content p {
	line-height: 1.86;
}

.section--category-context-links .category-context-links__inner {
	position: relative;
	width: 100%;
	padding-top: clamp(1.4rem, 2.8vw, 2rem);
	border-top: 1px solid rgba(72, 113, 133, 0.14);
}

.section--category-context-links .section-heading--category-context {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 0.7rem;
	align-items: start;
	max-width: none;
	margin-bottom: 1rem;
	padding: 0;
}

.section--category-context-links .section-heading__eyebrow,
.section--category-context-links .section-heading--category-context h2 {
	grid-column: 1;
}

.section--category-context-links .section-heading__eyebrow {
	width: max-content;
	margin: 0;
	padding: 0.42rem 0.82rem;
	border: 1px solid rgba(72, 113, 133, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 12px 28px rgba(20, 43, 53, 0.06);
}

.section--category-context-links .section-heading__eyebrow::before {
	display: none;
}

.section--category-context-links .section-heading--category-context h2 {
	max-width: none;
	padding: 0;
	font-size: clamp(1.55rem, 2.4vw, 2rem);
	line-height: 1;
	letter-spacing: -0.03em;
	white-space: normal;
}

.section--category-context-links .section-heading__text {
	display: none;
}

.section--category-context-links .internal-links__grid {
	display: flex;
	flex-wrap: wrap;
	grid-template-columns: none;
	gap: 0.8rem;
}

.section--category-context-links .internal-links__item {
	display: inline-flex;
	align-items: center;
	min-height: auto;
	padding: 0.78rem 1.05rem;
	border: 1px solid rgba(72, 113, 133, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 12px 28px rgba(20, 43, 53, 0.05);
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.section--category-context-links .internal-links__item::before,
.section--category-context-links .internal-links__item::after {
	display: none;
}

.section--category-context-links .internal-links__item:hover,
.section--category-context-links .internal-links__item:focus-visible {
	border-color: rgba(72, 113, 133, 0.2);
	background: rgba(241, 246, 248, 0.98);
	box-shadow: 0 16px 32px rgba(20, 43, 53, 0.08);
	transform: translateY(-1px);
}

.section--category-context-links .internal-links__item strong {
	max-width: none;
	font-size: 0.88rem;
	line-height: 1.1;
	font-weight: 700;
}

.section--category-context-links .internal-links__item span {
	display: none;
}

.woocommerce-ordering select {
	border-color: rgba(72, 113, 133, 0.1);
	background: rgba(255, 255, 255, 0.86);
}

.site-footer--editorial-dark {
	margin-top: 0;
	color: rgba(246, 247, 250, 0.76);
	background: linear-gradient(180deg, #171a1e 0%, #101317 100%);
}

.site-footer--editorial-dark .site-footer__shell {
	padding-top: 64px;
	padding-bottom: 28px;
}

.site-footer--editorial-dark .site-footer__top {
	gap: 38px;
}

.site-footer--editorial-dark .site-footer__logo::after {
	display: none;
}

.site-footer--editorial-dark .site-footer__intro {
	gap: 1rem;
}

.site-footer--editorial-dark .site-footer__intro-title {
	max-width: 13ch;
	font-size: clamp(1.9rem, 3vw, 3rem);
	line-height: 0.98;
}

.site-footer--editorial-dark .site-footer__column h3,
.site-footer--editorial-dark .site-footer__contact h3,
.site-footer--editorial-dark .site-footer__hours h4,
.site-footer--editorial-dark .site-footer__social h3 {
	margin-bottom: 1rem;
	font-size: 0.76rem;
	letter-spacing: 0.16em;
}

.site-footer--editorial-dark .site-footer__social-block {
	padding-top: 0;
	border-top: 0;
}

.site-footer--editorial-dark .site-footer__column--cta {
	padding: 1.35rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.04);
}

.site-footer--editorial-dark .site-footer__links li {
	padding-left: 0;
}

.site-footer--editorial-dark .site-footer__links li::before {
	display: none;
}

.site-footer--editorial-dark .site-footer__links a,
.site-footer--editorial-dark .site-footer__meta a,
.site-footer--editorial-dark .site-footer__bottom a {
	color: rgba(246, 247, 250, 0.78);
}

.site-footer--editorial-dark .site-footer__links a:hover,
.site-footer--editorial-dark .site-footer__meta a:hover,
.site-footer--editorial-dark .site-footer__bottom a:hover {
	transform: none;
	color: #ffffff;
}

.site-footer--editorial-dark .site-footer__social-link,
.site-footer--editorial-dark .site-footer__legal a {
	border-color: rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.04);
}

.site-footer--editorial-dark .site-footer__bottom {
	margin-top: 2.5rem;
	padding-top: 1.4rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1100px) {
	.hero-section__grid,
	.product-hero--editorial,
	.home-about {
		grid-template-columns: 1fr;
	}

	.product-main__header {
		grid-template-columns: 1fr;
		row-gap: 0.8rem;
		padding-bottom: 1.2rem;
	}

	.page-intro--shop .page-intro__copy {
		grid-template-columns: 1fr;
		row-gap: 0.8rem;
	}

	.product-main__header .eyebrow,
	.product-main__header h1,
	.product-main__lede {
		grid-column: 1;
		grid-row: auto;
	}

	.page-intro--shop .eyebrow,
	.page-intro--shop .page-intro__copy h1,
	.page-intro--shop .page-intro__text {
		grid-column: 1;
		grid-row: auto;
	}

	.product-main__lede {
		max-width: 54ch;
		padding-left: 0;
		border-left: 0;
	}

	.page-intro--shop .page-intro__text {
		max-width: 54ch;
		padding-left: 0;
		border-left: 0;
	}

	.hero-section__visual {
		min-height: auto;
		padding: 1.5rem 0 0;
	}

	.hero-section__media-card {
		left: auto;
		right: 0;
		bottom: 1rem;
	}

	.product-sidebar__sticky {
		position: static;
	}

}

@media (max-width: 780px) {
	body {
		font-size: 16px;
	}

	.hero-section {
		padding-top: 4.6rem;
		padding-bottom: 4.2rem;
	}

	.hero-section__grid {
		width: min(calc(100% - 2rem), var(--shell));
		padding-inline-start: 0;
		padding-inline-end: 0;
		gap: 2rem;
	}

	.hero-section h1 {
		max-width: none;
		font-size: clamp(2.8rem, 12vw, 4.4rem);
	}

	.hero-section__visual {
		padding-left: 0;
	}

	.home-about__frame {
		width: 100%;
	}

	.hero-section__visual::before,
	.hero-section__visual::after,
	.hero-section__media::before {
		display: none;
	}

	.hero-section__media-card {
		position: static;
		margin-top: 1rem;
	}

	.home-book-card--featured .home-book-card__frame,
	.section--newsletter .newsletter-box,
	.newsletter-box--home-premium,
	.internal-links__grid,
	.section--seo-links .internal-links__grid,
	.product-main__section .internal-links__grid {
		grid-template-columns: 1fr;
	}

	.section--featured-books .section-heading--featured h2 {
		white-space: normal;
	}

	.product-overview-card .section-heading--product-overview h2,
	.product-main__section .section-heading--product-overview h2 {
		white-space: normal;
	}

	.section--product-cta .cta-panel--product {
		gap: 1rem;
		padding: 1.35rem 1.15rem 1.25rem;
		text-align: center;
	}

	.product-cta__copy {
		justify-items: center;
		max-width: none;
	}

	.product-cta__actions {
		justify-items: stretch;
	}

	.section--product-cta .button-row {
		width: 100%;
		justify-content: center;
	}

	.home-book-card__body,
	.home-book-card--featured .home-book-card__body,
	.product-card__content,
	.post-card__content {
		padding-inline: 1rem;
	}

	.home-book-card__featured-top {
		grid-template-columns: 1fr;
	}

	.home-book-card__footer--featured-band {
		justify-content: flex-start;
	}

	.home-book-card__body--featured-top {
		padding-top: 0;
	}

	.section--newsletter .newsletter-box__form {
		padding: 1.2rem;
	}

	.product-gallery__thumbs,
	.product-facts--overview {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.page-intro__copy h1,
	.product-main__header h1 {
		max-width: none;
	}

	.page-intro--shop .page-intro__copy h1 {
		white-space: normal;
	}
}

@media (max-width: 560px) {
	.section,
	.page-intro {
		padding: 3.8rem 0;
	}

	.site-header__inner {
		min-height: 74px;
		gap: 0.8rem;
	}

	.site-header__utilities {
		gap: 0.45rem;
	}

	.site-language-switcher__trigger {
		min-height: 2.75rem;
		padding-inline: 0.68rem 1.8rem;
	}

	.site-language-switcher__code {
		font-size: 0.7rem;
		letter-spacing: 0.14em;
	}

	.site-cart-button {
		width: 2.75rem;
		height: 2.75rem;
	}

	.site-cart-drawer {
		width: 100%;
		padding: 1rem;
	}

	.site-toast-stack {
		top: auto;
		right: 0.8rem;
		bottom: 0.8rem;
		width: min(100vw - 1.6rem, 24rem);
	}

	.site-toast {
		padding: 0.95rem;
	}

	.site-toast__actions {
		grid-column: 1 / -1;
	}

	.hero-section__media img,
	.home-about__media img {
		border-radius: 28px;
	}

	.home-about__media img {
		max-height: 30rem;
	}

	.product-gallery__thumbs,
	.product-facts--overview,
	.home-book-card__specs,
	.home-book-card__specs--featured-top {
		grid-template-columns: 1fr;
	}

	.product-booking-card,
	.product-trust-card,
	.newsletter-stage {
		padding: 1.2rem;
	}
}

/* Blog Home Equal Cards */

.section--latest-posts .section-heading--home {
	align-items: end;
}

.section--latest-posts .section-heading--home h2 {
	max-width: none;
	padding-bottom: 0;
	white-space: nowrap;
}

.section--latest-posts .post-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.4rem;
}

.section--latest-posts .post-card,
.section--latest-posts .post-card:first-child,
.section--latest-posts .post-card:nth-child(2),
.section--latest-posts .post-card:nth-child(3) {
	grid-column: auto;
	grid-row: auto;
	height: 100%;
}

.section--latest-posts .post-card__media img,
.section--latest-posts .post-card:first-child .post-card__media img {
	aspect-ratio: 16 / 10;
}

.section--latest-posts .post-card__content,
.section--latest-posts .post-card:first-child .post-card__content {
	display: grid;
	grid-template-rows: auto auto 1fr auto;
	gap: 0.95rem;
	height: 100%;
	padding: 1.25rem 1.1rem 1.15rem;
	background: transparent;
}

.section--latest-posts .post-card:first-child .post-card__title {
	max-width: none;
	font-size: clamp(1.1rem, 1.6vw, 1.45rem);
	line-height: 1.12;
}

.section--latest-posts .post-card__excerpt,
.section--latest-posts .post-card:first-child .post-card__excerpt {
	display: -webkit-box;
	max-width: none;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	font-size: 0.96rem;
}

@media (max-width: 780px) {
	.section--latest-posts .section-heading--home h2 {
		white-space: normal;
	}
}

/* SEO Home Equal Links */

.section--seo-links .shell--narrow {
	position: static;
	padding: 0;
	width: min(calc(100% - 2rem), var(--shell));
	margin-inline: auto;
	background: none;
	box-shadow: none;
}

.section--seo-links {
	padding-top: max(0px, calc(clamp(4.5rem, 8vw, 7.5rem) - 40px));
}

.section--seo-links .section-heading--home {
	align-items: end;
}

.section--seo-links .section-heading--home h2 {
	max-width: none;
	padding-bottom: 0;
	white-space: nowrap;
}

.section--seo-links .section-heading__text:empty {
	display: none;
}

.section--seo-links .internal-links__grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.section--seo-links .internal-links__item,
.section--seo-links .internal-links__item:first-child {
	grid-column: auto;
	grid-row: auto;
	min-height: 100%;
	padding-right: 1.35rem;
}

.section--seo-links .internal-links__item strong,
.section--seo-links .internal-links__item:first-child strong {
	max-width: none;
	font-size: 1.08rem;
	line-height: 1.14;
}

@media (max-width: 780px) {
	.section--seo-links .section-heading--home h2 {
		white-space: normal;
	}
}

/* Blog Editorial Refresh */

.content-layout--blog {
	grid-template-columns: minmax(0, 1fr);
	align-items: start;
	column-gap: 0;
}

.section--blog-archive {
	padding-top: 2.2rem;
}

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

.section--blog-archive .post-card__media img,
.section--latest-posts .post-card__media img,
.section--latest-posts .post-card:first-child .post-card__media img {
	aspect-ratio: 16 / 10;
}

.section--blog-archive .post-card__content,
.section--latest-posts .post-card__content,
.section--latest-posts .post-card:first-child .post-card__content {
	display: grid;
	grid-template-rows: auto auto 1fr auto;
	gap: 0.95rem;
	height: 100%;
	background: transparent;
}

.section--blog-archive .post-card__title,
.section--latest-posts .post-card__title,
.section--latest-posts .post-card:first-child .post-card__title {
	max-width: none;
	font-size: clamp(1.1rem, 1.6vw, 1.45rem);
	line-height: 1.12;
	min-height: calc(1.12em * 2);
}

.section--blog-archive .post-card__excerpt,
.section--latest-posts .post-card__excerpt,
.section--latest-posts .post-card:first-child .post-card__excerpt {
	display: -webkit-box;
	max-width: none;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	font-size: 0.96rem;
}

.section--blog-archive .content-layout__main {
	display: grid;
	gap: 0;
}

@media (max-width: 780px) {
	.section--blog-archive .post-grid {
		grid-template-columns: 1fr;
	}
}

.shop-toolbar--blog {
	margin-bottom: 1.6rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(72, 113, 133, 0.1);
}

.shop-toolbar__count {
	margin: 0;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(72, 113, 133, 0.88);
}

.content-layout--blog .content-layout__main {
	min-width: 0;
}

.blog-sidebar {
	position: sticky;
	top: 6rem;
	gap: 1rem;
}

.blog-sidebar .widget {
	padding: 1.4rem;
	border: 1px solid rgba(72, 113, 133, 0.08);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.8);
	box-shadow: var(--shadow-card);
	backdrop-filter: blur(10px);
}

.blog-sidebar .widget-title {
	margin: 0 0 1rem;
	font-family: var(--font-serif);
	font-size: 1.45rem;
	line-height: 1.04;
	letter-spacing: -0.03em;
}

.sidebar-link-list {
	gap: 0.6rem;
}

.sidebar-link-list a {
	display: block;
	padding: 0.9rem 1rem;
	border: 1px solid rgba(72, 113, 133, 0.08);
	border-radius: 18px;
	background: rgba(245, 247, 247, 0.9);
	color: var(--color-text);
	font-weight: 600;
	line-height: 1.45;
	transition: transform 180ms ease, background var(--transition), border-color var(--transition), color var(--transition);
}

.sidebar-link-list a:hover,
.sidebar-link-list a:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(72, 113, 133, 0.16);
	background: #ffffff;
	color: var(--color-primary);
}

.post-card__meta {
	justify-content: flex-start;
}

.post-card__meta span,
.section--latest-posts .post-card__meta span {
	display: inline-flex;
	align-items: center;
	padding: 0.32rem 0.7rem;
	border: 1px solid rgba(72, 113, 133, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	color: var(--color-primary);
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.section--latest-posts .post-card__meta span {
	padding: 0;
	border: 0;
	background: transparent;
}

.entry--post .page-intro {
	padding-bottom: 2rem;
}

.entry--post .page-intro__copy {
	width: 100%;
	max-width: none;
}

.entry--post .entry-meta {
	margin-bottom: 0.35rem;
}

.entry--post .page-intro__copy h1 {
	width: 100%;
	max-width: none;
	padding-inline: 0;
}

.entry-featured-image {
	margin: 0;
	overflow: hidden;
	border-radius: 34px;
	box-shadow: 0 30px 72px rgba(18, 35, 44, 0.12);
}

.entry-featured-image img {
	width: 100%;
	aspect-ratio: 16 / 8.5;
	object-fit: cover;
}

.entry--post .entry-content {
	width: 100%;
	max-width: none;
	font-size: 1.03rem;
	line-height: 1.85;
	color: rgba(31, 37, 41, 0.9);
}

.entry-layout--with-rail {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: clamp(2rem, 4vw, 4rem);
	align-items: start;
}

.entry-layout__content,
.blog-shop-rail {
	min-width: 0;
}

.blog-shop-rail__sticky {
	position: sticky;
	top: 108px;
}

.blog-shop-rail__panel {
	position: relative;
	display: grid;
	gap: 1.5rem;
	padding: 1.6rem;
	border: 1px solid rgba(72, 113, 133, 0.1);
	border-radius: 30px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 248, 250, 0.94) 100%);
	box-shadow: 0 24px 54px rgba(18, 35, 44, 0.09);
	overflow: hidden;
}

@media (max-width: 1100px) {
	.product-sidebar-featured.blog-shop-rail__sticky {
		position: static;
		top: auto;
	}
}

.blog-shop-rail__panel::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 1px;
	background: linear-gradient(90deg, rgba(72, 113, 133, 0.28) 0%, rgba(72, 113, 133, 0) 88%);
}

.blog-shop-rail__intro {
	display: grid;
	gap: 0.95rem;
}

.blog-shop-rail__intro h2 {
	margin: 0;
	font-size: clamp(1.5rem, 2.1vw, 1.95rem);
	line-height: 1.05;
	letter-spacing: -0.04em;
}

.blog-shop-rail__intro p:not(.eyebrow) {
	margin: 0;
	font-size: 0.96rem;
	line-height: 1.78;
	color: rgba(31, 37, 41, 0.76);
}

.blog-shop-rail__button {
	width: 100%;
	justify-content: center;
}

.blog-shop-rail__products {
	display: grid;
	gap: 1rem;
	padding-top: 1.45rem;
	border-top: 1px solid rgba(72, 113, 133, 0.1);
}

.blog-shop-rail__products-title {
	margin: 0;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-primary);
}

.blog-shop-rail__list {
	display: grid;
	gap: 1rem;
}

.blog-shop-mini {
	display: grid;
	grid-template-columns: 86px minmax(0, 1fr);
	gap: 0.9rem;
	align-items: start;
}

.blog-shop-mini + .blog-shop-mini {
	padding-top: 1rem;
	border-top: 1px solid rgba(72, 113, 133, 0.08);
}

.blog-shop-mini__media {
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(72, 113, 133, 0.12), rgba(230, 184, 125, 0.16));
}

.blog-shop-mini__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 18px;
	box-shadow: 0 18px 34px rgba(18, 35, 44, 0.12);
}

.blog-shop-mini__body {
	display: grid;
	gap: 0.32rem;
}

.blog-shop-mini__title {
	margin: 0;
	font-size: 1.02rem;
	line-height: 1.12;
}

.blog-shop-mini__title a {
	color: inherit;
}

.blog-shop-mini__footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.55rem;
	margin-top: 0.2rem;
}

.entry--post .entry-content > p:first-of-type {
	position: relative;
	font-size: 1.12rem;
	line-height: 1.9;
	color: rgba(31, 37, 41, 0.94);
}

.entry--post .entry-content > p:first-of-type::first-letter {
	float: left;
	margin: 0.12rem 0.7rem 0 0;
	font-family: var(--font-serif);
	font-size: 4.2rem;
	line-height: 0.82;
	color: var(--color-primary);
}

.entry--post .entry-content h2,
.entry--post .entry-content h3 {
	margin-top: 2.4rem;
}

.entry--post .entry-content h2 {
	padding-top: 1.2rem;
	border-top: 1px solid rgba(72, 113, 133, 0.12);
}

.entry--post .entry-content blockquote {
	margin: 2rem 0;
	padding: 1.2rem 0 1.2rem 1.4rem;
	border-left: 2px solid rgba(72, 113, 133, 0.3);
	color: var(--color-text);
	font-family: var(--font-serif);
	font-size: 1.35rem;
	line-height: 1.3;
}

.entry--post .entry-content a {
	text-decoration: underline;
	text-decoration-color: rgba(72, 113, 133, 0.28);
	text-underline-offset: 0.18em;
}

.entry--post .entry-content a:hover,
.entry--post .entry-content a:focus-visible {
	text-decoration-color: rgba(72, 113, 133, 0.6);
}

.entry--post .entry-content ul,
.entry--post .entry-content ol {
	padding-left: 1.45rem;
}

.entry--post .entry-content li + li {
	margin-top: 0.45rem;
}

.entry--post .entry-content hr {
	margin: 2.5rem 0;
	border: 0;
	border-top: 1px solid rgba(72, 113, 133, 0.12);
}

.the_posts_pagination {
	margin-top: 2.5rem;
}

.the_posts_pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.6rem;
}

.the_posts_pagination .page-numbers {
	min-width: 44px;
	min-height: 44px;
	padding: 0.65rem 0.9rem;
	border: 1px solid rgba(72, 113, 133, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 12px 26px rgba(18, 35, 44, 0.05);
}

.the_posts_pagination .page-numbers.current {
	background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-strong) 100%);
	border-color: transparent;
	color: #ffffff;
}

.section--related-posts .post-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section--related-posts .section-heading h2 {
	max-width: none;
	white-space: nowrap;
}

@media (max-width: 1100px) {
	.content-layout--blog {
		grid-template-columns: 1fr;
	}

	.blog-sidebar {
		position: static;
	}

	.entry-layout--with-rail {
		grid-template-columns: 1fr;
	}

	.blog-shop-rail__sticky {
		position: static;
	}
}

@media (max-width: 780px) {
	.entry--post .page-intro__copy h1 {
		max-width: none;
	}

	.entry-featured-image {
		border-radius: 28px;
	}

	.entry-featured-image img {
		aspect-ratio: 16 / 10;
	}

	.section--related-posts .post-grid {
		grid-template-columns: 1fr;
	}

	.section--related-posts .section-heading h2 {
		white-space: normal;
	}

	.blog-shop-rail__panel {
		padding: 1.3rem;
		border-radius: 24px;
	}

	.blog-shop-mini {
		grid-template-columns: 76px minmax(0, 1fr);
	}
}

/* Footer Redesign: centered logo + four SEO columns */
.site-footer--editorial-dark {
	position: relative;
	margin-top: 0;
	color: rgba(246, 247, 250, 0.78);
	border-top: 0;
	background:
		radial-gradient(circle at top center, rgba(72, 113, 133, 0.18), transparent 36%),
		linear-gradient(180deg, #20252a 0%, #161a1e 100%);
}

.site-footer--editorial-dark .site-footer__shell {
	position: relative;
	z-index: 1;
	padding-top: 4.8rem;
	padding-bottom: 1.8rem;
}

.site-footer--editorial-dark .site-footer__brand-row {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 2.9rem;
	text-align: center;
}

.site-footer--editorial-dark .site-footer__logo {
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.site-footer--editorial-dark .site-footer__logo img {
	display: block;
	max-width: 220px;
	max-height: 74px;
	width: auto;
	height: auto;
}

.site-footer--editorial-dark .site-footer__nav-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 2.2rem 2rem;
	align-items: start;
	padding-bottom: 2.4rem;
}

.site-footer--editorial-dark .site-footer__nav-column {
	display: grid;
	gap: 1rem;
	min-width: 0;
	text-align: center;
}

.site-footer--editorial-dark .site-footer__nav-column h3,
.site-footer--editorial-dark .site-footer__social-intro h3 {
	margin: 0;
	color: #ffffff;
	font-family: var(--font-sans);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.site-footer--editorial-dark .site-footer__links {
	display: grid;
	gap: 0.72rem;
	list-style: none;
	margin: 0;
	padding: 0;
	justify-items: center;
}

.site-footer--editorial-dark .site-footer__links li {
	padding-left: 0;
}

.site-footer--editorial-dark .site-footer__links li::before {
	display: none;
}

.site-footer--editorial-dark .site-footer__links a {
	color: rgba(246, 247, 250, 0.74);
	font-size: 0.98rem;
	font-weight: 500;
	line-height: 1.35;
	transition: color var(--transition), transform var(--transition);
}

.site-footer--editorial-dark .site-footer__links a.is-highlight,
.site-footer--editorial-dark .site-footer__links a:hover,
.site-footer--editorial-dark .site-footer__links a:focus-visible {
	color: #ffffff;
}

.site-footer--editorial-dark .site-footer__links a:hover,
.site-footer--editorial-dark .site-footer__links a:focus-visible {
	transform: translateY(-1px);
}

.site-footer--editorial-dark .site-footer__social-band {
	display: grid;
	gap: 1.2rem;
	justify-items: center;
	padding-top: 1.85rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
}

.site-footer--editorial-dark .site-footer__social-intro {
	display: grid;
	gap: 0.6rem;
	max-width: 36rem;
}

.site-footer--editorial-dark .site-footer__social-copy,
.site-footer--editorial-dark .site-footer__social-copy p {
	color: rgba(246, 247, 250, 0.68);
}

.site-footer--editorial-dark .site-footer__social-copy p {
	margin-bottom: 0;
}

.site-footer--editorial-dark .site-footer__social-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
}

.site-footer--editorial-dark .site-footer__social-link,
.site-footer--editorial-dark .site-footer__legal a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0.45rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	color: rgba(246, 247, 250, 0.82);
	transition: border-color var(--transition), background var(--transition), color var(--transition), transform var(--transition);
}

.site-footer--editorial-dark .site-footer__social-link {
	gap: 0.72rem;
	padding-left: 0.55rem;
}

.site-footer--editorial-dark .site-footer__social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
}

.site-footer--editorial-dark .site-footer__social-icon svg {
	display: block;
	width: 0.98rem;
	height: 0.98rem;
	stroke: currentColor;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.site-footer--editorial-dark .site-footer__social-label {
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.site-footer--editorial-dark .site-footer__social-link:hover,
.site-footer--editorial-dark .site-footer__social-link:focus-visible,
.site-footer--editorial-dark .site-footer__legal a:hover,
.site-footer--editorial-dark .site-footer__legal a:focus-visible {
	border-color: rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.07);
	color: #ffffff;
	transform: translateY(-1px);
}

.site-footer--editorial-dark .site-footer__legal-row {
	margin-top: 1.8rem;
	padding-top: 1.35rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer--editorial-dark .site-footer__legal {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
}

.site-footer--editorial-dark .site-footer__legal a {
	min-height: 40px;
	padding-inline: 0.95rem;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.site-footer--editorial-dark .site-footer__bottom {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin-top: 1.5rem;
	padding-top: 1.2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	color: rgba(246, 247, 250, 0.56);
}

.site-footer--editorial-dark .site-footer__bottom p {
	margin: 0;
	text-align: center;
	font-size: 0.92rem;
}

@media (max-width: 1080px) {
	.site-footer--editorial-dark .site-footer__nav-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 780px) {
	.site-footer--editorial-dark .site-footer__shell {
		padding-top: 4rem;
	}

	.site-footer--editorial-dark .site-footer__brand-row {
		margin-bottom: 2.2rem;
	}

	.site-footer--editorial-dark .site-footer__nav-grid {
		grid-template-columns: 1fr;
		gap: 1.8rem;
		padding-bottom: 2rem;
	}

	.site-footer--editorial-dark .site-footer__social-links,
	.site-footer--editorial-dark .site-footer__legal {
		justify-content: center;
	}

	.site-footer--editorial-dark .site-footer__social-link {
		width: 100%;
		max-width: 18rem;
	}
}

/* Home About visual fit refinement */
.home-about__visual {
	width: fit-content;
	max-width: 100%;
	justify-self: end;
}

.home-about__visual::before {
	display: block;
	inset: 1rem 0.75rem -0.7rem 0.75rem;
}

.home-about__frame {
	width: fit-content;
	max-width: 100%;
}

.home-about__frame::before,
.home-about__frame::after {
	display: block;
}

.home-about__media {
	display: inline-flex;
	min-height: 0;
}

.home-about__media img {
	width: auto;
	max-width: min(100%, 28rem);
	height: auto;
	max-height: none;
}

@media (max-width: 1100px) {
	.home-about__visual,
	.home-about__frame {
		width: 100%;
	}

	.home-about__media {
		display: flex;
	}

	.home-about__media img {
		width: 100%;
		max-width: 100%;
	}
}

/* Home About redesign */
.section--home-about {
	background: linear-gradient(180deg, rgba(243, 245, 244, 0.78), rgba(238, 243, 244, 0.94));
}

.home-about {
	grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
	align-items: center;
	gap: clamp(2.75rem, 5.6vw, 5.5rem);
}

.home-about__content {
	gap: 1.75rem;
}

.section-heading--about-manifesto h2 {
	max-width: 9.5ch;
	padding-inline: 0;
	padding-right: 0;
}

.home-about__note {
	max-width: 36rem;
	padding-top: 1.35rem;
	padding-left: 0;
	border-top: 1px solid rgba(72, 113, 133, 0.16);
	border-left: 0;
}

.home-about__note-text,
.home-about__note-text p {
	font-size: clamp(1.1rem, 1.55vw, 1.36rem);
	line-height: 1.58;
}

.home-about__visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	max-width: 40rem;
	padding: 0.9rem 0 0.65rem 1.15rem;
	margin-inline-start: auto;
}

.home-about__visual::before {
	content: "";
	position: absolute;
	inset: 0.9rem 0.5rem -0.4rem 1rem;
	border: 1px solid rgba(72, 113, 133, 0.08);
	border-radius: 2rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.12));
	box-shadow: 0 20px 54px rgba(18, 35, 44, 0.08);
}

.home-about__stage {
	position: relative;
	z-index: 1;
	width: min(100%, 38rem);
	aspect-ratio: 600 / 571;
	padding: 0.75rem;
	border-radius: 2rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.22));
	box-shadow: 0 24px 58px rgba(18, 35, 44, 0.08);
}

.home-about__stage::before {
	content: "";
	position: absolute;
	inset: 0.75rem;
	border: 1px solid rgba(72, 113, 133, 0.08);
	border-radius: 1.6rem;
}

.home-about__frame {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.home-about__frame::before,
.home-about__frame::after {
	display: none;
}

.home-about__media,
.home-about__placeholder {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	min-height: 0;
	border-radius: 1.7rem;
	overflow: hidden;
	box-shadow: 0 24px 50px rgba(18, 35, 44, 0.12);
}

.home-about__media {
	background: #ffffff;
}

.home-about__media img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: 100%;
	border-radius: 1.7rem;
	aspect-ratio: 600 / 571;
	object-fit: cover;
}

.home-about__placeholder {
	min-height: 0;
}

@media (max-width: 1100px) {
	.home-about {
		grid-template-columns: 1fr;
	}

	.home-about__visual,
	.home-about__stage,
	.home-about__frame {
		max-width: none;
		width: 100%;
	}

	.home-about__visual {
		padding-left: 0;
	}

	.home-about__stage {
		margin-inline: auto;
	}
}

@media (max-width: 780px) {
	.home-about__visual {
		padding: 0.8rem 0 0;
	}

	.home-about__visual::before {
		inset: 0.7rem 0 0 0;
	}

	.home-about__stage {
		width: 100%;
		padding: 0.75rem;
	}

	.home-about__frame {
		width: 100%;
	}
}

/* Mobile polish: home blog + scroll rendering */

@media (max-width: 780px) {
	body {
		background: linear-gradient(180deg, #ffffff 0%, #fafaf8 56%, #f5f6f4 100%);
	}

	.site-main {
		overflow: visible;
	}

	.site-header,
	.menu-toggle,
	.featured-books-stage,
	.hero-section__media-card {
		backdrop-filter: none;
	}

	.hero-section__visual::before,
	.hero-section__visual::after,
	.hero-section__media::after,
	.home-book-card__frame::before,
	.home-book-card__frame::after,
	.home-book-card__media::after,
	.section--latest-posts .shell::before,
	.home-about__visual::before {
		display: none;
	}

	.featured-books-stage,
	.section--latest-posts .shell,
	.section--latest-posts .post-card,
	.home-book-card__frame,
	.home-about__stage,
	.home-about__media,
	.newsletter-stage {
		box-shadow: 0 14px 30px rgba(20, 43, 53, 0.07);
	}

	.hero-section__media img {
		box-shadow: 0 20px 40px rgba(17, 31, 37, 0.12);
	}

	.home-book-card__frame {
		background: #ffffff;
	}

	.home-book-card__media {
		background: #f6f7f5;
	}

	.home-book-card__badge {
		box-shadow: none;
	}

	.home-book-card__media img,
	.home-book-card:hover .home-book-card__media img,
	.home-book-card:focus-within .home-book-card__media img {
		transform: none;
		transition: none;
	}

	.section--latest-posts .post-grid {
		grid-template-columns: 1fr;
	}

	.section--latest-posts .post-card,
	.section--latest-posts .post-card:first-child,
	.section--latest-posts .post-card:nth-child(2),
	.section--latest-posts .post-card:nth-child(3) {
		grid-column: 1 / -1;
	}
}

.page-intro--info {
	padding-bottom: 1.35rem;
}

.page-intro--info .page-intro__copy {
	position: relative;
	display: grid;
	gap: 0.95rem;
	max-width: none;
	padding: 0.35rem 0 1.55rem;
}

.page-intro--info .page-intro__copy::before {
	content: "";
	position: absolute;
	top: -1.4rem;
	left: -1.6rem;
	width: clamp(8rem, 16vw, 12rem);
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(230, 184, 125, 0.16), transparent 72%);
	pointer-events: none;
}

.page-intro--info .page-intro__copy::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: linear-gradient(90deg, rgba(72, 113, 133, 0.3), rgba(230, 184, 125, 0.34), rgba(72, 113, 133, 0));
}

.page-intro--info .page-intro__copy > * {
	position: relative;
	z-index: 1;
}

.page-intro--info .eyebrow {
	width: max-content;
	margin: 0;
	padding: 0.42rem 0.82rem;
	border: 1px solid rgba(72, 113, 133, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.76);
	box-shadow: 0 10px 24px rgba(20, 43, 53, 0.05);
}

.page-intro--info .page-intro__copy h1 {
	max-width: none;
	margin: 0;
	padding: 0;
	font-size: clamp(2.55rem, 5vw, 4.45rem);
	line-height: 0.94;
	letter-spacing: -0.048em;
}

.page-intro--info .page-intro__text {
	max-width: 62ch;
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 1rem;
	line-height: 1.82;
}

.page-intro--info .page-intro__meta {
	margin: -0.15rem 0 0;
	font-size: 1rem;
	font-style: italic;
	line-height: 1.55;
	color: var(--color-muted);
}

.page-intro__text--full p:first-child:last-child {
	margin: 0;
}

.section--info-page {
	padding-top: 1rem;
}

.info-page {
	display: grid;
	gap: clamp(2.25rem, 4vw, 3.4rem);
}

.info-page__section {
	display: grid;
	gap: 1rem;
}

.info-page__section--compact {
	gap: 0.7rem;
}

.info-page__section-title {
	margin: 0;
	font-size: clamp(1.6rem, 2vw, 2.1rem);
	line-height: 1.02;
	letter-spacing: -0.032em;
}

.info-page__section-title--minor {
	font-size: clamp(1.35rem, 1.8vw, 1.7rem);
}

.info-page__prose,
.info-page__subsection {
	color: var(--color-muted);
}

.info-page__prose > * + * {
	margin-top: 1rem;
}

.info-page__prose p,
.info-page__subsection p,
.info-page__feature-card p,
.info-page__section p {
	line-height: 1.8;
}

.info-page__list {
	display: grid;
	gap: 0.58rem;
	margin: 0;
	padding-left: 1.35rem;
}

.info-page__list li {
	margin: 0;
	line-height: 1.7;
}

.info-page__list li strong {
	color: var(--color-text);
}

.info-page__highlight {
	margin: 0;
	font-size: clamp(1.1rem, 1.8vw, 1.32rem);
	font-weight: 700;
	line-height: 1.45;
	color: var(--color-heading);
}

.info-page__stack {
	display: grid;
	gap: 1.15rem;
}

.info-page__subsection {
	padding: clamp(1.15rem, 2vw, 1.45rem) clamp(1.15rem, 2vw, 1.45rem);
	border: 1px solid rgba(72, 113, 133, 0.11);
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 249, 0.92));
	box-shadow: 0 18px 40px rgba(21, 39, 50, 0.05);
}

.info-page__subsection h3 {
	margin: 0 0 0.45rem;
	font-size: 1.18rem;
	line-height: 1.15;
}

.info-page__meta {
	margin: 0 0 0.45rem;
	font-weight: 700;
	color: var(--color-primary);
}

.info-page__table-wrap {
	overflow-x: auto;
	border: 1px solid rgba(72, 113, 133, 0.12);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 18px 38px rgba(18, 35, 44, 0.05);
}

.info-page__table {
	width: 100%;
	min-width: 620px;
	border-collapse: collapse;
}

.info-page__table th,
.info-page__table td {
	padding: 1rem 1.15rem;
	border-bottom: 1px solid rgba(72, 113, 133, 0.12);
	text-align: left;
}

.info-page__table thead th {
	background: #ef6d4a;
	color: #fff;
	font-size: 0.95rem;
	font-weight: 700;
}

.info-page__table--accent thead th {
	background: #f2a128;
}

.info-page__table tbody tr:last-child td {
	border-bottom: 0;
}

.info-page__table--legal {
	min-width: 0;
}

.info-page__table--legal tbody th {
	width: min(34%, 18rem);
	font-family: var(--font-sans);
	font-size: 1rem;
	font-weight: 700;
	background: rgba(247, 248, 249, 0.78);
}

.info-page__table--legal tbody tr:last-child th {
	border-bottom: 0;
}

.info-page__feature-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.15rem;
}

.info-page__feature-grid--compact {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-page__feature-grid--single {
	grid-template-columns: 1fr;
}

.info-page__feature-card {
	padding: clamp(1.15rem, 2vw, 1.45rem);
	border: 1px solid rgba(72, 113, 133, 0.11);
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 249, 0.94));
	box-shadow: 0 18px 40px rgba(20, 43, 53, 0.05);
}

.info-page__feature-card--emphasis {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 250, 0.98));
}

.info-page__feature-card h3 {
	margin: 0 0 0.6rem;
	font-size: 1.22rem;
	line-height: 1.15;
}

.info-page__feature-card p:last-child,
.info-page__subsection p:last-child {
	margin-bottom: 0;
}

.info-page a {
	color: var(--color-primary);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.14em;
}

.info-page .faq-list {
	gap: 1.1rem;
}

.info-page__closing-cta {
	display: grid;
	justify-items: center;
	gap: 1rem;
	padding: clamp(1.35rem, 2.5vw, 1.85rem);
	border: 1px solid rgba(72, 113, 133, 0.12);
	border-radius: 28px;
	background:
		radial-gradient(circle at top left, rgba(230, 184, 125, 0.16), transparent 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 248, 0.94));
	box-shadow: 0 18px 42px rgba(20, 43, 53, 0.06);
	text-align: center;
}

.info-page__closing-title {
	margin: 0;
	font-size: clamp(2rem, 3vw, 3rem);
	line-height: 0.96;
	letter-spacing: -0.04em;
}

.info-page__closing-actions {
	margin-top: 0.1rem;
	justify-content: center;
}

.info-page__closing-cta .button,
.info-page__closing-cta .button:hover,
.info-page__closing-cta .button:focus-visible {
	color: #ffffff;
}

.info-page__logo-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.15rem;
}

.info-page__logo-card {
	padding: clamp(1rem, 2vw, 1.2rem);
	border: 1px solid rgba(72, 113, 133, 0.11);
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 249, 0.94));
	box-shadow: 0 18px 40px rgba(20, 43, 53, 0.05);
}

.info-page__logo-stage {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: clamp(8.5rem, 14vw, 10rem);
	padding: 1rem;
	border: 1px solid rgba(72, 113, 133, 0.1);
	border-radius: 20px;
	background:
		radial-gradient(circle at top right, rgba(230, 184, 125, 0.1), transparent 38%),
		rgba(255, 255, 255, 0.9);
}

.info-page__logo-stage img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 7rem;
	object-fit: contain;
}

.info-page__logo-placeholder {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.5;
	text-align: center;
	text-transform: uppercase;
	color: rgba(72, 113, 133, 0.82);
}

@media (max-width: 960px) {
	.info-page__feature-grid,
	.info-page__feature-grid--compact,
	.info-page__logo-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.page-intro--info .page-intro__copy h1 {
		font-size: clamp(2.35rem, 9vw, 3.3rem);
	}

	.page-intro--info .page-intro__copy::before {
		left: -0.9rem;
	}

	.info-page__table th,
	.info-page__table td {
		padding: 0.85rem 0.95rem;
	}

	.info-page__subsection,
	.info-page__feature-card {
		padding: 1rem;
	}
}

.site-preferences {
	position: relative;
	display: inline-flex;
	z-index: 36;
}

.site-preferences__trigger {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	min-height: 3rem;
	padding: 0.25rem 2.35rem 0.25rem 0.88rem;
	border: 1px solid rgba(72, 113, 133, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.76);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 12px 28px rgba(18, 35, 44, 0.04);
	color: var(--color-primary);
	cursor: pointer;
	transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.site-preferences__trigger:hover,
.site-preferences__trigger:focus-visible,
.site-preferences.is-open .site-preferences__trigger {
	background: rgba(255, 255, 255, 0.94);
	border-color: rgba(72, 113, 133, 0.16);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 16px 34px rgba(18, 35, 44, 0.08);
	color: var(--color-primary);
}

.site-preferences__trigger::after {
	content: "";
	position: absolute;
	right: 0.95rem;
	top: 50%;
	width: 0.46rem;
	height: 0.46rem;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-60%) rotate(45deg);
	opacity: 0.72;
	transition: transform var(--transition), opacity var(--transition);
}

.site-preferences.is-open .site-preferences__trigger::after {
	transform: translateY(-35%) rotate(-135deg);
	opacity: 1;
}

.site-preferences__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1rem;
	height: 1rem;
	color: var(--color-primary);
	pointer-events: none;
}

.site-preferences__icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.45;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.site-preferences__values {
	display: inline-flex;
	align-items: center;
	gap: 0.38rem;
}

.site-preferences__value {
	display: inline-flex;
	align-items: center;
	gap: 0.28rem;
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-primary);
	pointer-events: none;
}

.site-preferences__separator {
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1;
	color: rgba(72, 113, 133, 0.55);
}

.site-preferences__currency-symbol {
	font-size: 0.86rem;
	letter-spacing: 0;
}

.site-preferences__dropdown {
	position: absolute;
	top: calc(100% + 0.7rem);
	right: 0;
	width: min(23rem, calc(100vw - 2rem));
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-0.35rem);
	transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.site-preferences.is-open .site-preferences__dropdown {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.site-preferences__panel {
	display: grid;
	gap: 1rem;
	padding: 1rem;
	border: 1px solid rgba(72, 113, 133, 0.12);
	border-radius: 24px;
	background:
		radial-gradient(circle at top right, rgba(230, 184, 125, 0.16), transparent 34%),
		rgba(255, 255, 255, 0.97);
	box-shadow: 0 24px 48px rgba(18, 35, 44, 0.14);
	backdrop-filter: blur(18px);
}

.site-preferences__header {
	display: grid;
	gap: 0.25rem;
}

.site-preferences__section {
	display: grid;
	gap: 0.55rem;
	align-self: stretch;
}

.site-preferences__section-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.8rem;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	text-align: left;
}

.site-preferences__section-toggle-copy {
	display: grid;
	gap: 0.1rem;
	min-width: 0;
}

.site-preferences__section + .site-preferences__section {
	padding-top: 0.95rem;
	border-top: 1px solid rgba(72, 113, 133, 0.1);
}

.site-preferences__section-title {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-primary);
}

.site-preferences__section-current {
	display: none;
	align-items: center;
	gap: 0.32rem;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 0.82rem;
	font-weight: 600;
	line-height: 1.25;
	color: rgba(31, 37, 41, 0.9);
}

.site-preferences__section-current-symbol {
	font-size: 0.86rem;
	font-weight: 700;
	line-height: 1;
}

.site-preferences__section-toggle-icon {
	display: none;
	flex: 0 0 auto;
	width: 0.58rem;
	height: 0.58rem;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-10%) rotate(45deg);
	opacity: 0.72;
	transition: transform var(--transition), opacity var(--transition);
}

.site-preferences__section.is-open .site-preferences__section-toggle-icon {
	transform: translateY(10%) rotate(-135deg);
	opacity: 1;
}

.site-preferences__section-content[hidden] {
	display: none;
}

.site-preferences .site-language-switcher__list,
.site-preferences__currency-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.3rem;
}

.site-preferences .site-language-switcher__item,
.site-preferences__currency-item {
	margin: 0;
}

.site-preferences .site-language-switcher__item a[data-gt-lang],
.site-preferences__currency-link {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.68rem;
	padding: 0.72rem 0.85rem;
	border: 1px solid transparent;
	border-radius: 18px;
	background: rgba(247, 249, 250, 0.72);
	color: rgba(31, 37, 41, 0.94);
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	line-height: 1.3;
	text-decoration: none;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
	transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), color var(--transition);
}

.site-preferences .site-language-switcher__item a[data-gt-lang]:hover,
.site-preferences .site-language-switcher__item a[data-gt-lang]:focus-visible,
.site-preferences .site-language-switcher__item a[data-gt-lang].gt-current-lang,
.site-preferences__currency-link:hover,
.site-preferences__currency-link:focus-visible,
.site-preferences__currency-link.is-active {
	background: rgba(72, 113, 133, 0.09);
	border-color: rgba(72, 113, 133, 0.12);
	box-shadow: 0 14px 30px rgba(20, 43, 53, 0.05);
	color: var(--color-primary);
}

.site-preferences .site-language-switcher__item a[data-gt-lang] img,
.site-preferences .site-language-switcher__item a[data-gt-lang] .flag {
	flex: 0 0 auto;
	width: 1.18rem;
	height: 1.18rem;
	border-radius: 999px;
}

.site-preferences .site-language-switcher__item a[data-gt-lang] span {
	display: inline-flex;
	align-items: center;
}

.site-preferences__currency-link {
	gap: 0.62rem;
	padding-block: 0.56rem;
}

.site-preferences__currency-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 1.96rem;
	height: 1.96rem;
	padding: 0;
	border: 1px solid rgba(72, 113, 133, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--color-primary);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.site-preferences__currency-pill-symbol {
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1;
}

.site-preferences__currency-pill--wide .site-preferences__currency-pill-symbol {
	font-size: 0.7rem;
	letter-spacing: 0.02em;
}

.site-preferences__currency-label {
	display: inline-flex;
	align-items: center;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.2;
	color: rgba(31, 37, 41, 0.94);
	text-transform: uppercase;
}

@media (min-width: 781px) {
	.site-preferences__panel {
		grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
		align-items: stretch;
		column-gap: 1rem;
		row-gap: 0.9rem;
	}

	.site-preferences__header {
		grid-column: 1 / -1;
	}

	.site-preferences__section-toggle {
		pointer-events: none;
	}

	.site-preferences__section-current,
	.site-preferences__section-toggle-icon {
		display: none;
	}

	.site-preferences__section-content[hidden] {
		display: block;
	}

	.site-preferences__section + .site-preferences__section {
		padding-top: 0;
		padding-left: 1rem;
		border-top: 0;
		border-left: 1px solid rgba(72, 113, 133, 0.1);
	}
}

.site-preferences .site-language-switcher__item a[data-gt-lang][data-gt-lang="ja"] {
	display: none;
}

@media (max-width: 1024px) {
	.site-preferences__trigger {
		min-height: 2.9rem;
		padding-inline: 0.78rem 2rem;
	}

	.site-preferences__value {
		font-size: 0.72rem;
		letter-spacing: 0.14em;
	}
}

@media (max-width: 780px) {
	.site-preferences__trigger {
		min-height: 2.9rem;
		padding-inline: 0.72rem 1.9rem;
	}

	.site-preferences__dropdown {
		right: 0;
		width: min(21rem, calc(100vw - 1.4rem));
	}

	.site-preferences__panel {
		grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
		align-items: stretch;
		column-gap: 0.85rem;
		row-gap: 0.8rem;
		padding: 0.88rem;
		border-radius: 22px;
	}

	.site-preferences__header {
		grid-column: 1 / -1;
	}

	.site-preferences__section + .site-preferences__section {
		padding-top: 0;
		padding-left: 0.85rem;
		border-top: 0;
		border-left: 1px solid rgba(72, 113, 133, 0.1);
	}

	.site-preferences__section-toggle {
		padding: 0.82rem 0.9rem;
		border: 1px solid rgba(72, 113, 133, 0.1);
		border-radius: 18px;
		background: rgba(247, 249, 250, 0.78);
		box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
		cursor: pointer;
	}

	.site-preferences__section-current,
	.site-preferences__section-toggle-icon {
		display: inline-flex;
	}

	.site-preferences__section-content {
		margin-top: 0.55rem;
	}
}

@media (max-width: 520px) {
	.site-preferences__icon {
		width: 0.92rem;
		height: 0.92rem;
	}

	.site-preferences__trigger {
		gap: 0.52rem;
		padding-left: 0.68rem;
	}

	.site-preferences__value {
		font-size: 0.68rem;
		letter-spacing: 0.12em;
	}

	.site-preferences__currency-label {
		font-size: 0.8rem;
	}

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

	.site-preferences__section + .site-preferences__section {
		padding-top: 0.85rem;
		padding-left: 0;
		border-top: 1px solid rgba(72, 113, 133, 0.1);
		border-left: 0;
	}
}

.site-header__preferences-slot:empty,
.site-navigation__preferences-slot:empty {
	display: none;
}

.site-header__preferences-slot {
	display: inline-flex;
}

.site-navigation__preferences-slot {
	display: none;
}

@media (max-width: 780px) {
	.site-header__inner {
		grid-template-columns: minmax(0, 1fr) auto auto;
		gap: 0.75rem;
		min-height: 78px;
	}

	.site-branding {
		min-width: 0;
	}

	.site-branding__link {
		max-width: 100%;
	}

	.site-logo {
		max-height: 56px;
	}

	.site-header__utilities {
		grid-column: 2;
		gap: 0.5rem;
	}

	.site-header__preferences-slot {
		display: none;
	}

	.site-navigation {
		display: grid;
		gap: 0.8rem;
	}

	.site-navigation__preferences-slot {
		display: block;
	}

	.site-navigation__preferences-slot .site-preferences {
		display: block;
		width: 100%;
	}

	.site-navigation__preferences-slot .site-preferences__trigger {
		display: none;
	}

	.site-navigation__preferences-slot .site-preferences__dropdown {
		position: static;
		width: 100%;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: none;
	}

	.site-navigation__preferences-slot .site-preferences__panel {
		padding: 0.9rem;
		border-radius: 28px;
		box-shadow: 0 22px 42px rgba(18, 35, 44, 0.1);
	}

	.site-navigation__preferences-slot .site-preferences__header {
		display: grid;
	}

	.site-navigation__preferences-slot .site-preferences__section-title {
		font-size: 0.68rem;
	}

	.site-navigation__preferences-slot .site-preferences .site-language-switcher__item a[data-gt-lang],
	.site-navigation__preferences-slot .site-preferences__currency-link {
		min-height: 3.1rem;
	}

	.menu-toggle {
		grid-column: 3;
		justify-self: end;
	}
}

@media (max-width: 520px) {
	.site-navigation__preferences-slot .site-preferences__panel {
		grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
	}

	.site-navigation__preferences-slot .site-preferences__section + .site-preferences__section {
		padding-top: 0;
		padding-left: 0.85rem;
		border-top: 0;
		border-left: 1px solid rgba(72, 113, 133, 0.1);
	}
}

@media (max-width: 430px) {
	.site-navigation__preferences-slot .site-preferences__panel {
		grid-template-columns: 1fr;
	}

	.site-navigation__preferences-slot .site-preferences__section + .site-preferences__section {
		padding-top: 0.85rem;
		padding-left: 0;
		border-top: 1px solid rgba(72, 113, 133, 0.1);
		border-left: 0;
	}
}

/* Mobile header + full-width menu refinement */
@media (max-width: 780px) {
	.site-header__inner {
		grid-template-columns: minmax(0, 1fr) auto auto;
		grid-template-rows: auto;
		align-items: center;
		row-gap: 0;
		column-gap: 0.7rem;
	}

	.site-branding,
	.site-header__utilities,
	.menu-toggle {
		grid-row: 1;
		align-self: center;
	}

	.site-branding {
		grid-column: 1;
	}

	.site-header__utilities {
		grid-column: 2;
		justify-self: end;
	}

	.menu-toggle {
		grid-column: 3;
		justify-self: end;
	}

	.site-logo {
		max-height: 60px;
	}

	.site-navigation {
		display: none;
		left: 50%;
		right: auto;
		width: 100vw;
		padding: 0.95rem 1rem 1.1rem;
		border-top: 1px solid rgba(72, 113, 133, 0.08);
		background:
			radial-gradient(circle at top right, rgba(230, 184, 125, 0.14), transparent 30%),
			rgba(255, 255, 255, 0.98);
		box-shadow: 0 24px 44px rgba(18, 35, 44, 0.1);
		backdrop-filter: blur(18px);
		transform: translate(-50%, -0.75rem);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translate(-50%, -0.75rem);
	}

	.site-navigation.is-open {
		display: grid;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translate(-50%, 0);
	}

	.site-navigation__preferences-slot {
		display: block;
		width: 100%;
		margin-bottom: 0.85rem;
	}

	.site-navigation__preferences-slot .site-preferences {
		display: block;
		width: 100%;
	}

	.site-navigation__preferences-slot .site-preferences__dropdown {
		position: static;
		width: 100%;
		min-width: 0;
		max-width: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: none;
	}

	.site-navigation__preferences-slot .site-preferences__panel {
		padding: 0 0 0.95rem;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		backdrop-filter: none;
	}

	.site-navigation__preferences-slot .site-preferences__header {
		margin-bottom: 0.2rem;
	}

	.site-navigation__preferences-slot .site-preferences__section-title {
		font-size: 0.68rem;
	}

	.site-navigation__preferences-slot .site-preferences__section + .site-preferences__section {
		padding-left: 1rem;
		border-left: 1px solid rgba(72, 113, 133, 0.1);
	}

	.menu--primary {
		width: 100%;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		backdrop-filter: none;
	}

	.menu--primary a {
		padding: 0.9rem 0.1rem;
		border: 0;
		border-bottom: 1px solid rgba(72, 113, 133, 0.08);
		border-radius: 0;
		background: transparent;
		box-shadow: none;
	}
}

@media (max-width: 430px) {
	.site-navigation__preferences-slot .site-preferences__panel {
		grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
	}

	.site-navigation__preferences-slot .site-preferences__section + .site-preferences__section {
		padding-top: 0;
		padding-left: 0.85rem;
		border-top: 0;
		border-left: 1px solid rgba(72, 113, 133, 0.1);
	}
}

@media (max-width: 360px) {
	.site-navigation__preferences-slot .site-preferences__panel {
		grid-template-columns: 1fr;
	}

	.site-navigation__preferences-slot .site-preferences__section + .site-preferences__section {
		padding-top: 0.85rem;
		padding-left: 0;
		border-top: 1px solid rgba(72, 113, 133, 0.1);
		border-left: 0;
	}
}

@media (max-width: 780px) {
	.featured-book-grid {
		grid-template-columns: 1fr !important;
	}
}

.product-mobile-cta {
	display: none;
}

@media (max-width: 780px) {
	body.has-product-mobile-cta {
		padding-bottom: calc(5.4rem + env(safe-area-inset-bottom));
	}

	body.has-open-cart-drawer.has-product-mobile-cta {
		padding-bottom: 0;
	}

	.product-mobile-cta {
		position: fixed;
		z-index: 70;
		right: max(0.85rem, env(safe-area-inset-right));
		bottom: calc(0.8rem + env(safe-area-inset-bottom));
		left: max(0.85rem, env(safe-area-inset-left));
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		gap: 0.8rem;
		min-height: 4.25rem;
		padding: 0.68rem 0.72rem 0.68rem 0.95rem;
		border: 1px solid rgba(72, 113, 133, 0.14);
		border-radius: 22px;
		background: rgba(255, 255, 255, 0.9);
		box-shadow: 0 18px 46px rgba(18, 35, 44, 0.18);
		backdrop-filter: blur(18px);
		opacity: 0;
		pointer-events: none;
		transform: translateY(calc(100% + 1.2rem));
		transition: opacity 180ms ease, transform 220ms ease;
	}

	.product-mobile-cta.is-visible {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	body.has-open-cart-drawer .product-mobile-cta {
		opacity: 0;
		pointer-events: none;
		transform: translateY(calc(100% + 1.2rem));
	}

	.product-mobile-cta__copy {
		display: grid;
		gap: 0.2rem;
		min-width: 0;
	}

	.product-mobile-cta__price {
		display: flex;
		flex-wrap: wrap;
		align-items: baseline;
		gap: 0.28rem 0.45rem;
		min-width: 0;
		color: var(--color-primary);
		font-size: 1.05rem;
		font-weight: 800;
		line-height: 1.05;
	}

	.product-mobile-cta__price .price,
	.product-mobile-cta__price ins {
		color: inherit;
		text-decoration: none;
	}

	.product-mobile-cta__price del {
		color: var(--color-muted);
		font-size: 0.82rem;
		font-weight: 700;
	}

	.product-mobile-cta .product-booking-card__tax {
		display: block;
		min-height: 0;
		padding: 0;
		border: 0;
		background: transparent;
		color: var(--color-muted);
		font-size: 0.69rem;
		font-weight: 800;
		line-height: 1.2;
	}

	.product-mobile-cta .product-booking-card__tax.is-empty {
		display: none;
	}

	.product-mobile-cta__button {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 8.6rem;
		min-height: 2.85rem;
		padding: 0.75rem 0.95rem;
		border-radius: 999px;
		background: var(--color-primary);
		color: #ffffff;
		font-size: 0.88rem;
		font-weight: 800;
		line-height: 1;
		text-align: center;
		white-space: nowrap;
		box-shadow: 0 12px 26px rgba(72, 113, 133, 0.22);
	}

	#product-purchase.is-mobile-cta-target {
		animation: gseditorial-purchase-focus 1100ms ease;
	}
}

@media (max-width: 390px) {
	.product-mobile-cta {
		grid-template-columns: minmax(0, 0.92fr) minmax(7.8rem, auto);
		gap: 0.65rem;
		padding-left: 0.82rem;
	}

	.product-mobile-cta__button {
		min-width: 7.8rem;
		padding-inline: 0.78rem;
		font-size: 0.82rem;
	}
}

@keyframes gseditorial-purchase-focus {
	0%,
	100% {
		box-shadow: 0 24px 54px rgba(18, 35, 44, 0.1);
	}

	35% {
		box-shadow: 0 24px 54px rgba(18, 35, 44, 0.1), 0 0 0 4px rgba(72, 113, 133, 0.16);
	}
}

@media (prefers-reduced-motion: reduce) {
	.product-mobile-cta,
	#product-purchase.is-mobile-cta-target {
		transition: none;
		animation: none;
	}
}
