:root {
	--rw-bg: #0d0b09;
	--rw-surface: #15120f;
	--rw-surface-2: #1c1814;
	--rw-surface-3: #262019;
	--rw-text: #f4ead8;
	--rw-muted: #c0b39f;
	--rw-border: rgba(226, 201, 141, 0.16);
	--rw-wine: #4a3a24;
	--rw-crimson: #c9a762;
	--rw-crimson-hover: #e2c98d;
	--rw-gold: #d8b96f;
	--rw-success: #9fcaac;
	--rw-danger: #ff9e9e;
	--rw-shadow: 0 24px 64px rgba(0, 0, 0, 0.38);
	--rw-radius: 14px;
	--rw-shell: min(1240px, calc(100vw - 48px));
	--rw-content: min(760px, calc(100vw - 48px));
	--rw-header-height: 118px;
}

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

html {
	scroll-behavior: smooth;
	text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--rw-bg);
	color: var(--rw-text);
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 17px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

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

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

figure {
	margin: 0;
}

a {
	color: var(--rw-gold);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

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

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

button,
[type="button"],
[type="submit"] {
	cursor: pointer;
}

:focus-visible {
	outline: 3px solid var(--rw-gold);
	outline-offset: 3px;
}

::selection {
	background: var(--rw-crimson);
	color: var(--rw-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.65em;
	color: var(--rw-text);
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 500;
	line-height: 1.08;
	text-wrap: balance;
}

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

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

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

p,
ul,
ol {
	margin-top: 0;
}

.site-shell {
	width: var(--rw-shell);
	margin-inline: auto;
}

.site-shell--content {
	width: var(--rw-content);
}

.site-shell--reading {
	width: min(1160px, calc(100vw - 48px));
}

.site-shell--narrow {
	width: min(640px, calc(100vw - 48px));
	text-align: center;
}

.section-pad {
	padding-block: clamp(72px, 9vw, 128px);
}

.section-pad--compact {
	padding-block: clamp(48px, 6vw, 80px);
}

.section-pad--page {
	padding-block: clamp(58px, 7vw, 96px) clamp(84px, 9vw, 128px);
}

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

.screen-reader-text:focus,
.skip-link:focus {
	clip: auto !important;
	width: auto;
	height: auto;
	margin: 0;
	padding: 12px 18px;
	top: 10px;
	left: 10px;
	z-index: 100000;
	background: #fff;
	color: #111;
	font-weight: 700;
}

.eyebrow {
	margin: 0 0 16px;
	color: var(--rw-crimson-hover);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1.3;
	text-transform: uppercase;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.button,
.wp-block-button__link {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	border: 1px solid transparent;
	border-radius: 3px;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.035em;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover,
.wp-block-button__link:hover {
	transform: translateY(-1px);
}

.button--primary,
.wp-block-button__link {
	background: var(--rw-crimson);
	color: var(--rw-bg);
	box-shadow: 0 12px 28px rgba(201, 167, 98, 0.15);
}

.button--primary:hover,
.wp-block-button__link:hover {
	background: var(--rw-crimson-hover);
	color: var(--rw-bg);
}

.button--secondary,
.is-style-outline > .wp-block-button__link {
	border-color: rgba(226, 201, 141, 0.36);
	background: rgba(13, 11, 9, 0.2);
	color: var(--rw-text);
	box-shadow: none;
}

.button--secondary:hover,
.is-style-outline > .wp-block-button__link:hover {
	border-color: var(--rw-gold);
	background: rgba(216, 185, 111, 0.08);
	color: var(--rw-gold);
}

.front-page-main.woocommerce a.button--hero-outline,
.front-page-main.woocommerce a.button--hero-outline:hover,
.front-page-main.woocommerce a.button--hero-outline:focus-visible {
	border-color: var(--rw-gold);
	background: transparent;
	color: #fff !important;
	box-shadow: none;
}

.front-page-main.woocommerce a.button--hero-outline:hover,
.front-page-main.woocommerce a.button--hero-outline:focus-visible {
	border-color: var(--rw-crimson-hover);
	box-shadow: 0 0 0 1px rgba(226, 201, 141, 0.2), 0 10px 26px rgba(0, 0, 0, 0.16);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 750;
	text-decoration: none;
}

.site-header {
	position: relative;
	z-index: 100;
	background: rgba(16, 14, 11, 0.96);
	border-bottom: 1px solid rgba(226, 201, 141, 0.1);
	backdrop-filter: blur(16px);
	transition: top 220ms ease, background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header__inner {
	display: grid;
	min-height: var(--rw-header-height);
	grid-template-columns: 128px minmax(0, 1fr) auto;
	align-items: center;
	gap: 20px;
	transition: min-height 220ms ease;
}

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

.custom-logo {
	width: auto;
	max-width: 280px;
	max-height: 106px;
	transition: max-height 220ms ease;
}

.theme-logo-link {
	display: inline-grid;
	width: 112px;
	height: 112px;
	place-items: center;
	transition: width 220ms ease, height 220ms ease;
}

.theme-logo {
	width: 112px;
	height: 112px;
	object-fit: contain;
	transition: width 220ms ease, height 220ms ease;
}

body.home .site-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	background: transparent;
	border-bottom-color: transparent;
	backdrop-filter: none;
}

body.home .site-header.is-scrolled,
body.home.menu-is-open .site-header {
	top: 0;
	background: rgba(13, 11, 9, 0.94);
	border-bottom-color: var(--rw-border);
	box-shadow: 0 12px 34px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(18px);
}

body.home .site-header.is-scrolled .site-header__inner {
	min-height: 82px;
}

body.home .site-header.is-scrolled .theme-logo-link,
body.home .site-header.is-scrolled .theme-logo {
	width: 74px;
	height: 74px;
}

body.home .site-header.is-scrolled .custom-logo {
	max-height: 72px;
}

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

.admin-bar.home .site-header.is-scrolled,
.admin-bar.home.menu-is-open .site-header {
	top: 32px;
}

.site-wordmark {
	display: inline-flex;
	flex-direction: column;
	color: var(--rw-text);
	text-decoration: none;
}

.site-wordmark:hover {
	color: var(--rw-text);
}

.site-wordmark__main {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.3rem;
	letter-spacing: 0.035em;
}

.site-wordmark__tag {
	color: var(--rw-gold);
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.primary-menu,
.primary-menu ul,
.footer-menu,
.legal-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
}

.primary-menu li {
	position: relative;
}

.primary-menu a {
	display: block;
	padding: 12px 8px;
	color: var(--rw-text);
	font-size: 0.95rem;
	font-weight: 400;
	letter-spacing: 0.005em;
	white-space: nowrap;
	text-decoration: none;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a:not([href*="#"]),
.primary-menu .current-menu-ancestor > a {
	color: var(--rw-gold);
}

.primary-menu .sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	min-width: 230px;
	padding: 10px;
	visibility: hidden;
	opacity: 0;
	background: var(--rw-surface-2);
	border: 1px solid var(--rw-border);
	box-shadow: var(--rw-shadow);
	transform: translateY(-6px);
	transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 2px;
}

.header-action {
	position: relative;
	display: inline-flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	border: 1px solid transparent;
	border-radius: 2px;
	color: #eadab9;
	text-decoration: none;
}

.header-action svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.75;
}

.header-action:hover {
	border-color: var(--rw-border);
	background: var(--rw-surface-2);
	color: var(--rw-gold);
}

.site-cart-count {
	position: absolute;
	top: -2px;
	right: -3px;
	display: inline-flex;
	min-width: 19px;
	height: 19px;
	align-items: center;
	justify-content: center;
	padding: 0 5px;
	border: 2px solid #100e0b;
	border-radius: 2px;
	background: var(--rw-crimson);
	color: var(--rw-bg);
	font-size: 0.65rem;
	font-weight: 800;
}

.menu-toggle {
	display: none;
	min-height: 44px;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	border: 1px solid var(--rw-border);
	background: transparent;
	color: var(--rw-text);
}

.menu-toggle__label {
	font-size: 0.9rem;
	font-weight: 500;
}

.menu-toggle__icon {
	display: grid;
	width: 20px;
	gap: 4px;
}

.menu-toggle__icon span {
	display: block;
	height: 2px;
	background: currentColor;
}

.home-hero {
	position: relative;
	min-height: 100svh;
	overflow: hidden;
	background:
		linear-gradient(112deg, rgba(216, 185, 111, 0.065) 0%, transparent 34%),
		linear-gradient(145deg, #0d0b09 0%, #18140f 52%, #090806 100%);
}

.home-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
	background-size: 50px 50px;
	mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.home-hero__atmosphere {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.home-hero__atmosphere::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(13, 11, 9, 0.98) 0%, rgba(13, 11, 9, 0.82) 48%, rgba(13, 11, 9, 0.38) 100%), linear-gradient(0deg, #0d0b09 0%, transparent 32%);
}

.home-hero__atmosphere img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.52;
}

.home-hero__grid {
	position: relative;
	z-index: 2;
	display: grid;
	min-height: 100svh;
	grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
	align-items: center;
	gap: clamp(60px, 8vw, 120px);
	padding-top: calc(var(--rw-header-height) + clamp(42px, 5vw, 72px));
	padding-bottom: clamp(72px, 8vw, 120px);
}

.home-hero__copy {
	max-width: 720px;
}

.home-hero__mobile-eyebrow {
	display: none;
}

.home-hero h1 {
	max-width: 850px;
	margin-bottom: 24px;
	line-height: 0.88;
}

.home-hero__lead {
	max-width: 650px;
	margin-bottom: 32px;
	color: var(--rw-muted);
	font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}

.hero-facts {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 28px;
	margin: 26px 0 0;
	padding: 0;
	color: var(--rw-muted);
	font-size: 0.86rem;
	list-style: none;
}

.hero-facts li::before {
	content: "✦";
	margin-right: 9px;
	color: var(--rw-gold);
}

.home-hero__product {
	position: relative;
	display: flex;
	min-height: 570px;
	align-items: center;
	justify-content: center;
}

.home-hero__ring {
	position: absolute;
	z-index: 1;
	width: min(525px, 104%);
	height: auto;
	opacity: 0.72;
	filter: drop-shadow(0 0 34px rgba(216, 185, 111, 0.1));
	pointer-events: none;
	transform-origin: 50% 50%;
	animation: hero-ring-rotation 52s linear infinite;
	will-change: transform;
}

@keyframes hero-ring-rotation {
	from {
		transform: rotate(0turn);
	}

	to {
		transform: rotate(1turn);
	}
}

.hero-cover {
	position: relative;
	z-index: 2;
	display: block;
	width: min(355px, 72vw);
	transform: rotate(1.5deg);
	transition: transform 220ms ease;
}

.hero-cover:hover {
	transform: translateY(-5px) rotate(0.5deg);
}

.hero-cover img {
	width: 100%;
	max-height: 570px;
	object-fit: contain;
	filter: drop-shadow(0 30px 36px rgba(0, 0, 0, 0.58));
}

.hero-cover--placeholder {
	display: flex;
	min-height: 480px;
	align-items: center;
	justify-content: center;
	padding: 36px;
	border: 1px solid var(--rw-border);
	background: var(--rw-surface-2);
	color: var(--rw-muted);
	text-align: center;
}

.hero-product-card {
	position: absolute;
	right: 5%;
	bottom: 1%;
	z-index: 3;
	display: flex;
	align-items: baseline;
	gap: 10px;
	padding: 13px 17px;
	background: rgba(21, 18, 15, 0.94);
	border: 1px solid var(--rw-border);
	box-shadow: var(--rw-shadow);
	backdrop-filter: blur(12px);
	white-space: nowrap;
}

.hero-product-card > span {
	color: var(--rw-gold);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hero-product-card .price {
	color: var(--rw-text);
	font-weight: 800;
}

.home-products {
	background: var(--rw-bg);
}

.home-products .section-heading > div {
	max-width: none;
}

.home-products .section-heading p:not(.eyebrow) {
	white-space: nowrap;
}

.home-products__footer {
	display: flex;
	justify-content: center;
	margin-top: clamp(40px, 5vw, 64px);
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 36px;
	margin-bottom: 42px;
}

.section-heading > div {
	max-width: 780px;
}

.section-heading h2 {
	margin-bottom: 14px;
}

.section-heading p:not(.eyebrow) {
	margin-bottom: 0;
	color: var(--rw-muted);
}

.story-section {
	position: relative;
	overflow: hidden;
	background: var(--rw-surface);
	border-block: 1px solid var(--rw-border);
}

.story-section::after {
	content: "";
	position: absolute;
	top: 0;
	right: 8%;
	width: 1px;
	height: 100%;
	background: linear-gradient(to bottom, transparent, rgba(216, 185, 111, 0.18), transparent);
	pointer-events: none;
}

.story-section__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
	align-items: center;
	gap: clamp(56px, 9vw, 140px);
}

.story-section__visual {
	position: relative;
	display: grid;
	width: min(430px, 80vw);
	aspect-ratio: 1;
	place-items: center;
	margin-inline: auto;
}

.story-section__visual strong {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(5rem, 10vw, 8rem);
	font-weight: 400;
	color: var(--rw-gold);
	text-shadow: 0 0 50px rgba(215, 180, 119, 0.18);
}

.story-section__visual img {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.42));
}

.story-section__copy {
	max-width: 680px;
}

.story-section__copy > p:not(.eyebrow) {
	margin-bottom: 30px;
	color: var(--rw-muted);
	font-size: 1.08rem;
}

.home-characters {
	--rw-character-stage: clamp(580px, calc(100svh - 120px), 820px);
	position: relative;
	display: flex;
	min-height: 0;
	align-items: stretch;
	overflow: hidden;
	padding-block: 0;
	background: #0a0907;
}

.character-carousel-shell {
	display: flex;
	min-width: 0;
}

.character-heading {
	position: relative;
	padding-bottom: clamp(18px, 2.5svh, 28px);
	border-bottom: 1px solid var(--rw-border);
}

.character-heading__topline {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	padding-top: clamp(22px, 3svh, 28px);
}

.character-heading__topline .eyebrow {
	margin-bottom: 0;
}

.character-heading__title {
	width: 100%;
	margin: 0;
	font-family: inherit;
	font-size: 1.17rem;
	line-height: 1.3;
	text-align: center;
	white-space: nowrap;
}

.character-heading__intro {
	max-width: 610px;
	margin: clamp(7px, 1svh, 11px) auto 0;
	color: var(--rw-muted);
	font-size: clamp(0.8rem, 1.08vw, 0.9rem);
	text-align: center;
}

.character-carousel {
	display: grid;
	width: 100%;
	height: var(--rw-character-stage);
	grid-template-columns: clamp(420px, 31vw, 500px) minmax(0, 1fr);
	grid-template-rows: minmax(0, 1fr);
	overflow: hidden;
	border-bottom: 1px solid var(--rw-border);
}

.character-carousel__stage {
	position: relative;
	height: 100%;
	min-height: 0;
	overflow: hidden;
	background: linear-gradient(145deg, rgba(216, 185, 111, 0.035), transparent 52%);
}

.character-carousel__stage::before {
	content: "";
	position: absolute;
	z-index: 2;
	top: 0;
	bottom: 0;
	left: 0;
	width: clamp(64px, 8vw, 128px);
	pointer-events: none;
	background: linear-gradient(90deg, #0a0907 0%, rgba(10, 9, 7, 0.9) 18%, rgba(10, 9, 7, 0.52) 48%, rgba(10, 9, 7, 0.12) 78%, transparent 100%);
}

.character-slide {
	position: absolute;
	z-index: 1;
	inset: 0;
	display: grid;
	margin: 0;
	place-items: center;
	animation: character-reveal 320ms ease both;
}

.character-slide[hidden] {
	display: none;
}

@keyframes character-reveal {
	from {
		opacity: 0;
		transform: translateX(14px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.home-characters .character-slide img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	object-fit: contain;
	object-position: left bottom;
	filter: drop-shadow(0 30px 42px rgba(0, 0, 0, 0.46));
}

.character-carousel__panel {
	display: flex;
	height: 100%;
	min-width: 0;
	min-height: 0;
	flex-direction: column;
	padding: clamp(24px, 3svh, 42px) 0 clamp(24px, 3svh, 42px) clamp(34px, 5vw, 78px);
}

.character-carousel__details {
	display: flex;
	min-height: 0;
	flex: 1;
	align-items: center;
	justify-content: center;
	padding-block: clamp(18px, 2.5svh, 32px);
}

.character-detail {
	width: min(100%, 760px);
	margin-inline: auto;
	text-align: center;
	animation: character-reveal 320ms ease both;
}

.character-detail[hidden] {
	display: none;
}

.character-detail h3 {
	margin-bottom: 10px;
	font-size: clamp(3.6rem, 5.8vw, 6rem);
	line-height: 0.88;
}

.character-slide__role {
	margin-bottom: 10px;
	color: var(--rw-text);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.character-slide__description {
	margin: 0;
	color: var(--rw-gold);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.character-slide__bio {
	max-width: 720px;
	margin: clamp(18px, 2.2svh, 26px) auto 0;
	padding-top: clamp(16px, 2svh, 22px);
	border-top: 1px solid var(--rw-border);
	color: var(--rw-muted);
	font-size: clamp(0.88rem, 1vw, 0.98rem);
	line-height: 1.58;
	text-align: left;
	text-wrap: pretty;
}

.character-carousel__controls {
	padding-top: clamp(16px, 2.2svh, 24px);
}

.character-carousel__arrows {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	gap: 8px;
}

.character-carousel__arrow {
	display: inline-grid;
	width: 48px;
	height: 48px;
	place-items: center;
	padding: 0;
	border: 1px solid var(--rw-border);
	background: transparent;
	color: var(--rw-text);
}

.character-carousel__arrow:hover,
.character-carousel__arrow:focus-visible {
	border-color: var(--rw-gold);
	color: var(--rw-gold);
}

.character-carousel__arrow svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.character-carousel__nav {
	display: flex;
	min-width: 0;
	overflow-x: auto;
	scrollbar-width: thin;
}

.character-carousel__nav button {
	position: relative;
	display: inline-flex;
	min-width: 0;
	flex: 1 1 0;
	align-items: baseline;
	justify-content: center;
	gap: 7px;
	padding: 9px 11px 12px;
	border: 0;
	border-right: 1px solid var(--rw-border);
	background: transparent;
	color: var(--rw-muted);
	font-size: 0.88rem;
	font-weight: 500;
	text-align: center;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color 160ms ease, color 160ms ease;
}

.character-carousel__nav button:last-child {
	border-right: 0;
}

.character-carousel__nav button::after {
	content: "";
	position: absolute;
	right: 10px;
	bottom: -1px;
	left: 10px;
	height: 2px;
	background: var(--rw-gold);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 160ms ease;
}

.character-carousel__nav button:hover,
.character-carousel__nav button[aria-current="true"] {
	background: rgba(216, 185, 111, 0.055);
	color: var(--rw-gold);
}

.character-carousel__nav button:hover::after,
.character-carousel__nav button:focus-visible::after,
.character-carousel__nav button[aria-current="true"]::after {
	transform: scaleX(1);
}

.home-widget-area,
.home-editor-content {
	background: var(--rw-bg);
}

.home-widget-area + .home-editor-content {
	padding-top: 0;
}

.front-page-main > section[id] {
	scroll-margin-top: 110px;
}

.home-authors {
	background: var(--rw-bg);
}

.home-author-feature {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.78fr);
	align-items: center;
	gap: clamp(40px, 6vw, 84px);
}

.home-author-feature__image {
	position: relative;
	width: 100%;
	min-height: 0;
	aspect-ratio: 6 / 5;
	overflow: hidden;
	background: transparent;
	grid-column: 2;
	grid-row: 1;
}

.home-author-feature__image::after {
	content: "";
	position: absolute;
	inset: -1px;
	z-index: 2;
	pointer-events: none;
	background:
		linear-gradient(90deg, var(--rw-bg) 0%, transparent 16%, transparent 82%, var(--rw-bg) 100%),
		linear-gradient(0deg, var(--rw-bg) 0%, transparent 15%, transparent 84%, var(--rw-bg) 100%);
}

.home-author-feature__image img {
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
	object-position: 42% center;
}

.home-author-feature__content {
	width: 100%;
	max-width: 720px;
	padding: clamp(12px, 2.5vw, 34px) clamp(0px, 1.5vw, 18px);
	grid-column: 1;
	grid-row: 1;
}

.home-author-feature__content h2 {
	margin-bottom: 24px;
}

.home-author-feature__content p:not(.eyebrow) {
	margin-bottom: 18px;
	color: var(--rw-muted);
	font-size: 1rem;
	line-height: 1.72;
}

.home-author-feature__content .text-link {
	margin-top: 12px;
}

.home-about {
	background: var(--rw-surface);
	border-block: 1px solid var(--rw-border);
}

.home-about__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: clamp(24px, 3vw, 40px);
}

.home-about__content {
	max-width: none;
	color: var(--rw-muted);
	font-size: 1.08rem;
}

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

.home-reviews {
	background: var(--rw-surface);
	border-block: 1px solid var(--rw-border);
}

.home-reviews .section-heading {
	align-items: center;
	flex-direction: column;
	gap: 18px;
	text-align: center;
}

.home-reviews .section-heading > div {
	max-width: 760px;
}

.review-verification-note {
	max-width: 820px;
	margin: 28px auto 0;
	color: var(--rw-muted);
	font-size: 0.82rem;
	line-height: 1.65;
	text-align: center;
}

.legal-document-meta,
.legal-seller-details {
	padding: 18px 22px;
	background: var(--rw-surface-2);
	border-left: 2px solid var(--rw-gold);
}

.legal-seller-details {
	font-style: normal;
	line-height: 1.75;
}

.home-section-blocks > .widget {
	margin: 0;
}

.review-cards {
	align-items: stretch !important;
}

.home-review-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.review-cards > .wp-block-column {
	display: flex;
}

.review-card {
	display: flex;
	width: 100%;
	flex-direction: column;
	padding: clamp(24px, 3vw, 36px);
	background: var(--rw-surface-2);
	border: 1px solid var(--rw-border);
	border-radius: var(--rw-radius);
}

.review-card__stars {
	margin-bottom: 18px;
	color: var(--rw-gold);
	letter-spacing: 0.12em;
}

.review-card blockquote {
	display: flex;
	flex: 1;
	flex-direction: column;
	margin: 0;
	padding: 0;
	border: 0;
}

.review-card blockquote p {
	color: var(--rw-text);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.12rem;
}

.review-card cite {
	margin-top: auto;
	padding-top: 18px;
	color: var(--rw-muted);
	font-size: 0.8rem;
	font-style: normal;
}

.home-blog {
	background: var(--rw-bg);
}

.home-final-cta__inner > .button-row {
	justify-content: flex-end;
}

.home-final-cta__inner > div:first-child p:last-child {
	margin-bottom: 0;
	color: var(--rw-muted);
}

.home-final-cta {
	position: relative;
	overflow: hidden;
	background: linear-gradient(120deg, #251f18 0%, #15120f 60%, #0d0b09 100%);
	border-top: 1px solid var(--rw-border);
}

.home-final-cta::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 7%;
	width: 120px;
	height: 1px;
	background: rgba(216, 185, 111, 0.28);
	transform: translate(-70%, -50%);
}

.home-final-cta__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 36px;
}

.home-final-cta h2 {
	max-width: 820px;
	margin-bottom: 0;
}

.site-footer {
	background: #090806;
	border-top: 1px solid var(--rw-border);
	color: var(--rw-muted);
}

.footer-main {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1.15fr;
	gap: clamp(32px, 5vw, 72px);
	padding-block: 72px 54px;
}

.site-footer h2,
.widget-title {
	margin-bottom: 18px;
	font-family: Inter, ui-sans-serif, sans-serif;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.footer-brand h2 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
}

.footer-brand__logo {
	width: 96px;
	height: 96px;
	margin-bottom: 20px;
	object-fit: contain;
}

.footer-brand p {
	max-width: 270px;
}

.footer-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.site-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer li + li {
	margin-top: 8px;
}

.site-footer a {
	color: var(--rw-muted);
	text-decoration: none;
}

.site-footer a:hover {
	color: var(--rw-gold);
}

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

.footer-contact p {
	margin: 9px 0 0;
	font-size: 0.86rem;
}

.footer-legal {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 24px;
	padding-block: 22px;
	border-top: 1px solid var(--rw-border);
	font-size: 0.73rem;
}

.footer-legal p {
	margin: 0;
}

.legal-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 18px;
}

.site-footer .legal-menu li,
.site-footer .legal-menu li + li {
	display: flex;
	align-items: center;
	margin-top: 0;
	line-height: 1.45;
}

.footer-credit {
	text-align: right;
	white-space: nowrap;
}

.footer-credit__heart {
	margin-inline: 0.22em;
	color: var(--rw-gold);
}

.archive-header,
.entry-header {
	margin-bottom: 42px;
}

.entry-subhero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background:
		radial-gradient(circle at 76% 12%, rgba(216, 185, 111, 0.1), transparent 31%),
		linear-gradient(135deg, #17130f 0%, #0d0b09 68%);
	border-bottom: 1px solid var(--rw-border);
}

.entry-subhero::after {
	content: "";
	position: absolute;
	z-index: -1;
	pointer-events: none;
}

.entry-subhero::after {
	top: 50%;
	right: clamp(-250px, -17vw, -170px);
	width: clamp(340px, 34vw, 500px);
	height: clamp(340px, 34vw, 500px);
	background: url("../images/gold-ring.webp") center / contain no-repeat;
	filter: drop-shadow(0 0 28px rgba(216, 185, 111, 0.09));
	opacity: 0.26;
	transform-origin: center;
	animation: subhero-ring-rotation 68s linear infinite;
	will-change: transform;
}

@keyframes subhero-ring-rotation {
	from {
		transform: translateY(-50%) rotate(0turn);
	}

	to {
		transform: translateY(-50%) rotate(1turn);
	}
}

.entry-subhero__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-block: clamp(50px, 5.5vw, 76px);
	text-align: center;
}

.entry-subhero__inner h1 {
	max-width: 1020px;
	margin: 0 auto;
	font-size: clamp(2.45rem, 4.8vw, 4.5rem);
	line-height: 1.02;
}

.entry-subhero__inner .eyebrow {
	margin-bottom: 20px;
}

.entry-subhero__lead {
	max-width: 760px;
	margin: 22px auto 0;
	color: var(--rw-muted);
	font-size: 1.08rem;
	line-height: 1.7;
}

/* PXS cookie banner: gold remains on-brand, dark copy passes WCAG AA. */
#pxs-banner #pxs-accept.pxs-cookie-btn {
	color: #0b0a08 !important;
}

.page-main .page-entry {
	font-size: 1.08rem;
}

.page-main .entry-content > *,
.single-entry__content-shell .entry-content > * {
	max-width: 100%;
}

.page-main .entry-content h2,
.page-main .entry-content h3,
.single-entry__content-shell .entry-content h2,
.single-entry__content-shell .entry-content h3 {
	margin-top: 1.8em;
	line-height: 1.15;
}

.page-main .entry-content h2,
.single-entry__content-shell .entry-content h2 {
	font-size: clamp(1.9rem, 3.4vw, 3rem);
}

.page-main .entry-content p,
.page-main .entry-content li,
.single-entry__content-shell .entry-content p,
.single-entry__content-shell .entry-content li {
	line-height: 1.82;
}

.page-main .entry-content ul,
.page-main .entry-content ol,
.single-entry__content-shell .entry-content ul,
.single-entry__content-shell .entry-content ol {
	padding-left: 1.4em;
}

.page-main .entry-content table,
.single-entry__content-shell .entry-content table {
	width: 100%;
	margin-block: 32px;
	border-collapse: collapse;
	background: var(--rw-surface);
}

.page-main .entry-content th,
.page-main .entry-content td,
.single-entry__content-shell .entry-content th,
.single-entry__content-shell .entry-content td {
	padding: 14px 16px;
	border: 1px solid var(--rw-border);
	text-align: left;
}

.page-main .entry-featured-image {
	max-width: 820px;
	margin: 0 auto 56px;
}

.single-main {
	padding-top: 0;
	padding-bottom: clamp(84px, 9vw, 128px);
}

.entry-subhero--article .single-entry__hero {
	padding-block: clamp(62px, 7vw, 96px);
}

.single-entry__hero {
	display: grid;
	grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
	align-items: center;
	gap: clamp(48px, 7vw, 96px);
	padding-bottom: clamp(54px, 7vw, 84px);
	border-bottom: 1px solid var(--rw-border);
}

.single-entry__hero--no-image {
	grid-template-columns: minmax(0, 820px);
	justify-content: center;
}

.single-entry__hero .entry-header {
	margin-bottom: 0;
}

.single-entry__hero .entry-title {
	max-width: 720px;
	margin-bottom: 24px;
	font-size: clamp(2.55rem, 4.1vw, 3.85rem);
	line-height: 1;
}

.single-entry__hero .entry-meta {
	flex-wrap: wrap;
	margin-bottom: 26px;
}

.entry-lead {
	max-width: 660px;
	margin: 0;
	color: var(--rw-muted);
	font-size: clamp(1rem, 1.35vw, 1.15rem);
	line-height: 1.75;
}

.archive-description,
.entry-meta {
	color: var(--rw-muted);
}

.entry-meta {
	display: flex;
	gap: 18px;
	font-size: 0.82rem;
}

.entry-featured-image {
	margin: 0 0 42px;
}

.entry-featured-image img {
	width: 100%;
	border-radius: var(--rw-radius);
}

.single-entry__hero .entry-featured-image {
	position: relative;
	aspect-ratio: 4 / 3;
	margin: 0;
	overflow: hidden;
	background: var(--rw-surface);
	border: 1px solid var(--rw-border);
	border-radius: var(--rw-radius);
	box-shadow: var(--rw-shadow);
}

.single-entry__hero .entry-featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
	border-radius: 0;
}

.single-entry__content-shell {
	padding-top: clamp(62px, 7vw, 92px);
}

.entry-content > * {
	max-width: var(--rw-content);
	margin-inline: auto;
}

.entry-content > .alignwide {
	max-width: 1240px;
}

.entry-content > .alignfull {
	max-width: none;
}

.entry-content p,
.entry-content li {
	color: #e5dce0;
}

.entry-content p + h2,
.entry-content ul + h2,
.entry-content ol + h2 {
	margin-top: 2em;
}

.entry-content blockquote {
	margin-block: 32px;
	padding-left: 24px;
	border-left: 3px solid var(--rw-gold);
	color: var(--rw-text);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.25rem;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

.post-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-card {
	overflow: hidden;
	background: var(--rw-surface);
	border: 1px solid var(--rw-border);
	border-radius: var(--rw-radius);
}

.post-card__image {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.post-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 240ms ease;
}

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

.post-card__body {
	padding: 28px;
}

.post-card__meta {
	margin-bottom: 8px;
	color: var(--rw-crimson-hover);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.post-card h2 {
	font-size: 1.6rem;
}

.post-card h2 a {
	color: var(--rw-text);
	text-decoration: none;
}

.post-card__excerpt {
	color: var(--rw-muted);
}

.navigation.pagination {
	margin-top: 44px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.page-numbers {
	display: inline-flex;
	min-width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	border: 1px solid var(--rw-border);
	color: var(--rw-text);
	text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
	background: var(--rw-crimson);
	border-color: var(--rw-crimson);
	color: var(--rw-bg);
}

.post-navigation {
	margin-top: 54px;
	padding-top: 28px;
	border-top: 1px solid var(--rw-border);
}

.post-navigation .nav-links {
	justify-content: space-between;
}

.post-navigation a {
	display: grid;
	max-width: 320px;
	text-decoration: none;
}

.post-navigation span {
	color: var(--rw-muted);
	font-size: 0.74rem;
	text-transform: uppercase;
}

.comments-area {
	margin-top: 64px;
	padding-top: 40px;
	border-top: 1px solid var(--rw-border);
}

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

.comment-body {
	margin-bottom: 20px;
	padding: 22px;
	background: var(--rw-surface);
	border: 1px solid var(--rw-border);
}

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

.search-form label {
	flex: 1;
}

.search-field,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="number"],
textarea,
select {
	width: 100%;
	min-height: 50px;
	padding: 11px 14px;
	border: 1px solid rgba(248, 242, 234, 0.25);
	border-radius: 3px;
	background: #130a0f;
	color: var(--rw-text);
}

textarea {
	min-height: 150px;
}

.search-field:focus,
input:focus,
textarea:focus,
select:focus {
	border-color: var(--rw-gold);
}

.error-404 {
	display: grid;
	min-height: 64vh;
	place-items: center;
}

.error-404 .button-row,
.error-404 .search-form {
	justify-content: center;
	margin-inline: auto;
}

.empty-state,
.no-results {
	padding: 42px;
	background: var(--rw-surface);
	border: 1px solid var(--rw-border);
	border-radius: var(--rw-radius);
	color: var(--rw-muted);
}

.widget {
	margin: 0;
}

.widget + .widget {
	margin-top: 28px;
}

@media (prefers-reduced-motion: reduce) {
	.home-hero__ring,
	.entry-subhero::after {
		animation: none !important;
	}

	.entry-subhero::after {
		transform: translateY(-50%);
	}

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

@media (max-width: 1100px) {
	:root {
		--rw-shell: min(1240px, calc(100vw - 36px));
	}

	.site-header__inner {
		grid-template-columns: 96px minmax(0, 1fr) auto;
		gap: 16px;
	}

	.primary-menu a {
		padding-inline: 6px;
		font-size: 0.9rem;
	}

	.character-carousel__nav button {
		gap: 5px;
		padding-inline: 8px;
		font-size: 0.84rem;
	}

	.home-hero__grid {
		grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
		gap: 40px;
	}

	.footer-main {
		grid-template-columns: 1.2fr repeat(3, 1fr);
		gap: 30px;
	}

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

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

@media (max-width: 1040px) {
	:root {
		--rw-header-height: 96px;
	}

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

	.theme-logo-link,
	.theme-logo {
		width: 88px;
		height: 88px;
	}

	.menu-toggle {
		display: inline-flex;
		grid-column: 2;
	}

	.header-actions {
		grid-column: 3;
	}

	.header-action--search {
		display: none;
	}

	.primary-navigation {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		max-height: calc(100vh - var(--rw-header-height));
		overflow-y: auto;
		visibility: hidden;
		opacity: 0;
		background: #100e0b;
		border-bottom: 1px solid var(--rw-border);
		transform: translateY(-8px);
		transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
	}

	.menu-is-open .primary-navigation {
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
	}

	.primary-menu {
		display: block;
		width: var(--rw-shell);
		margin: 0 auto;
		padding-block: 16px 24px;
	}

	.primary-menu a {
		padding: 13px 4px;
		border-bottom: 1px solid var(--rw-border);
		font-size: 1.12rem;
	}

	.primary-menu .sub-menu {
		position: static;
		min-width: 0;
		padding: 0 0 0 16px;
		visibility: visible;
		opacity: 1;
		background: transparent;
		border: 0;
		box-shadow: none;
		transform: none;
	}

	.home-hero__grid {
		min-height: 100svh;
		grid-template-columns: 1fr;
		gap: 20px;
		padding-top: calc(var(--rw-header-height) + 54px);
		padding-bottom: 80px;
	}

	.home-products .section-heading p:not(.eyebrow) {
		white-space: normal;
	}

	.home-hero__copy {
		max-width: 760px;
	}

	.home-hero__product {
		min-height: 520px;
	}

	.hero-product-card {
		right: 10%;
		bottom: 1%;
	}

	.story-section__grid {
		grid-template-columns: 1fr;
	}

	.story-section__visual {
		width: min(330px, 72vw);
	}

	.home-author-feature,
	.home-about__grid {
		grid-template-columns: 1fr;
	}

	.home-author-feature__image {
		width: min(680px, 100%);
		min-height: 0;
		justify-self: center;
		grid-column: auto;
		grid-row: auto;
	}

	.home-author-feature__image img {
		min-height: 0;
	}

	.home-author-feature__content {
		max-width: 800px;
		margin-inline: auto;
		padding: 30px 0 0;
		grid-column: auto;
		grid-row: auto;
	}

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

	.footer-legal {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.footer-credit {
		text-align: center;
	}
}

@media (max-width: 960px) {
	.single-entry__hero {
		grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
		gap: 38px;
	}

	.single-entry__hero .entry-title {
		font-size: clamp(2.35rem, 5.5vw, 3.3rem);
	}

	.home-characters {
		display: block;
		min-height: 0;
		padding-block: 0;
	}

	.character-carousel {
		height: auto;
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
		overflow: visible;
	}

	.character-carousel__stage {
		grid-column: 1;
		grid-row: 2;
		height: clamp(560px, 108vw, 760px);
		border-right: 0;
		border-bottom: 1px solid var(--rw-border);
	}

	.character-carousel__panel {
		grid-column: 1;
		grid-row: 1;
		height: auto;
		padding: 42px clamp(28px, 6vw, 54px) 46px;
		border-bottom: 1px solid var(--rw-border);
	}

	.character-carousel__details {
		min-height: 260px;
		padding-block: 38px;
	}

	.character-detail h3 {
		font-size: clamp(3.8rem, 11vw, 5.8rem);
	}
}

@media (max-width: 640px) {
	:root {
		--rw-shell: calc(100vw - 28px);
		--rw-content: calc(100vw - 28px);
		--rw-header-height: 90px;
	}

	body {
		font-size: 16px;
	}

	.single-main {
		padding-top: 0;
	}

	.site-shell--reading {
		width: calc(100vw - 28px);
	}

	.entry-subhero__inner {
		padding-block: 38px 42px;
	}

	.entry-subhero__inner h1 {
		font-size: clamp(2.15rem, 11vw, 3.15rem);
	}

	.entry-subhero__lead {
		margin-top: 20px;
	}

	.entry-subhero--article .single-entry__hero {
		padding-block: 38px 46px;
	}

	.single-entry__hero,
	.single-entry__hero--no-image {
		grid-template-columns: 1fr;
		gap: 30px;
		padding-bottom: 44px;
	}

	.single-entry__hero .entry-featured-image {
		aspect-ratio: 16 / 10;
	}

	.single-entry__hero .entry-title {
		margin-bottom: 18px;
		font-size: clamp(2.25rem, 11vw, 3.15rem);
	}

	.single-entry__hero .entry-meta {
		margin-bottom: 20px;
	}

	.single-entry__content-shell {
		padding-top: 44px;
	}

	.site-wordmark__main {
		font-size: 1.05rem;
	}

	.site-wordmark__tag {
		font-size: 0.53rem;
	}

	.custom-logo {
		max-width: 185px;
		max-height: 78px;
	}

	.theme-logo-link,
	.theme-logo {
		width: 80px;
		height: 80px;
	}

	body.home .site-header.is-scrolled .site-header__inner {
		min-height: 68px;
	}

	body.home .site-header.is-scrolled .theme-logo-link,
	body.home .site-header.is-scrolled .theme-logo {
		width: 58px;
		height: 58px;
	}

	body.home .site-header.is-scrolled .custom-logo {
		max-height: 58px;
	}

	.admin-bar.home .site-header {
		top: 46px;
	}

	.admin-bar.home .site-header.is-scrolled,
	.admin-bar.home.menu-is-open .site-header {
		top: 46px;
	}

	.menu-toggle__label,
	.header-action--search {
		display: none;
	}

	.menu-toggle {
		width: 42px;
		justify-content: center;
		padding: 8px;
	}

	.header-action {
		width: 40px;
	}

	.home-hero__grid {
		padding-top: calc(var(--rw-header-height) + 42px);
		padding-bottom: 72px;
	}

	.home-hero__copy {
		text-align: center;
	}

	.home-hero__mobile-eyebrow {
		display: block;
		order: -2;
		margin: 0;
		text-align: center;
	}

	.home-hero__copy > .eyebrow {
		display: none;
	}

	.home-hero__product {
		order: -1;
	}

	.home-hero h1 {
		font-size: clamp(2.55rem, 13vw, 4rem);
	}

	.home-hero__lead {
		margin-inline: auto;
		font-size: 1.05rem;
	}

	.home-hero__copy .button-row {
		justify-content: center;
	}

	.button-row .button {
		flex: 1 1 100%;
	}

	.hero-facts {
		display: flex;
		flex-wrap: nowrap;
		justify-content: center;
		gap: 6px;
		font-size: 0.66rem;
		letter-spacing: -0.01em;
		white-space: nowrap;
	}

	.hero-facts li::before {
		margin-right: 3px;
	}

	.home-hero__product {
		min-height: 440px;
	}

	.hero-cover {
		width: min(290px, 72vw);
	}

	.hero-product-card {
		right: 4%;
		bottom: 0;
		padding: 12px 15px;
	}

	.story-section::after {
		display: none;
	}

	.story-section__grid {
		gap: 34px;
		text-align: center;
	}

	.story-section__copy {
		margin-inline: auto;
	}

	.story-section__copy > p:not(.eyebrow) {
		margin-inline: auto;
	}

	.home-characters {
		padding-block: 0;
	}

	.character-carousel__stage {
		height: clamp(510px, 132vw, 620px);
	}

	.character-carousel__stage::before {
		width: clamp(46px, 14vw, 72px);
	}

	.character-carousel__panel {
		padding: 34px 22px 38px;
	}

	.character-heading {
		padding-bottom: 28px;
	}

	.character-heading__topline {
		display: block;
		padding-top: 0;
	}

	.character-heading__title {
		font-size: 1.1rem;
	}

	.character-carousel__arrows {
		position: static;
		justify-content: center;
		margin: 16px auto 0;
	}

	.character-carousel__arrow {
		width: 44px;
		height: 44px;
	}

	.character-carousel__details {
		min-height: 242px;
		padding-block: 34px;
	}

	.character-detail h3 {
		font-size: clamp(3.4rem, 16vw, 4.8rem);
	}

	.character-slide__bio {
		font-size: 0.94rem;
		line-height: 1.65;
	}

	.character-slide__role {
		font-size: clamp(1.22rem, 6vw, 1.65rem);
	}

	.character-carousel__nav {
		gap: 0;
	}

	.character-carousel__nav button {
		min-width: 82px;
		flex: 0 0 auto;
		padding-inline: 11px;
		font-size: 0.84rem;
	}

	.home-author-feature__image,
	.home-author-feature__image img {
		min-height: 0;
	}

	.home-author-feature__content {
		padding: 26px 8px 0;
	}

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

	.home-final-cta::before {
		display: none;
	}

	.home-final-cta__inner {
		align-items: center;
		flex-direction: column;
		gap: 28px;
		text-align: center;
	}

	.home-final-cta__inner > div:first-child,
	.home-final-cta__inner > .button-row {
		width: 100%;
	}

	.home-final-cta__inner > .button-row {
		justify-content: center;
	}

	.post-grid,
	.post-grid--three,
	.home-review-grid,
	.footer-main {
		grid-template-columns: 1fr;
	}

	.search-form {
		flex-direction: column;
	}

	.home-final-cta .button {
		width: 100%;
	}

	.footer-main {
		gap: 38px;
		padding-block: 52px 40px;
		text-align: center;
	}

	.footer-brand,
	.footer-column,
	.footer-widgets {
		display: flex;
		width: 100%;
		align-items: center;
		flex-direction: column;
	}

	.footer-brand__logo {
		margin-inline: auto;
		margin-bottom: 14px;
	}

	.footer-brand p {
		margin-inline: auto;
	}

	.footer-socials {
		justify-content: center;
	}

	.footer-contact {
		align-items: center;
	}

	.footer-legal {
		gap: 14px;
		padding-block: 24px 30px;
	}

	.footer-credit {
		white-space: normal;
	}
}
