:root {
	--sh-content-width: 1180px;
	--sh-reading-width: 820px;
	--sh-fortune-width: 1050px;
	--sh-space-1: 4px;
	--sh-space-2: 8px;
	--sh-space-3: 12px;
	--sh-space-4: 16px;
	--sh-space-5: 24px;
	--sh-space-6: 32px;
	--sh-space-7: 48px;
	--sh-space-8: 64px;
	--sh-radius-sm: 9px;
	--sh-radius-md: 15px;
	--sh-radius-lg: 22px;
	--sh-color-background: #0b0914;
	--sh-color-surface: #15111f;
	--sh-color-surface-raised: #1c1728;
	--sh-color-text: #f5f0f8;
	--sh-color-muted: #b5aebd;
	--sh-color-subtle: #867d90;
	--sh-color-border: rgb(222 199 235 / 14%);
	--sh-color-accent: #d5b876;
	--sh-color-accent-hover: #efd69a;
	--sh-color-violet: #a780d0;
	--sh-color-focus: #e5c986;
	--sh-font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--sh-font-serif: Georgia, "Times New Roman", serif;
	--sh-shadow-soft: 0 20px 55px rgb(0 0 0 / 22%);
}

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

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

body {
	margin: 0;
	overflow-x: clip;
	background:
		radial-gradient(circle at 80% 0, rgb(102 60 143 / 13%), transparent 34rem),
		var(--sh-color-background);
	color: var(--sh-color-text);
	font-family: var(--sh-font-sans);
	font-size: 16px;
	line-height: 1.68;
}

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

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}

img {
	height: auto;
}

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

a {
	color: var(--sh-color-accent);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.16em;
}

a:hover {
	color: var(--sh-color-accent-hover);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 3px solid var(--sh-color-focus);
	outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-block-start: 0;
	color: var(--sh-color-text);
	font-family: var(--sh-font-serif);
	font-weight: 600;
	line-height: 1.12;
	text-wrap: balance;
}

p {
	margin-block-start: 0;
}

.sh-container {
	width: min(calc(100% - 32px), var(--sh-content-width));
	margin-inline: auto;
}

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

.sh-skip-link {
	position: fixed;
	z-index: 10000;
	top: 12px;
	left: 12px;
	padding: 10px 16px;
	border-radius: var(--sh-radius-sm);
	background: var(--sh-color-text);
	color: #17111f;
	transform: translateY(-200%);
}

.sh-skip-link:focus {
	color: #17111f;
	transform: translateY(0);
}

.sh-site-header {
	position: relative;
	z-index: 100;
	border-bottom: 1px solid var(--sh-color-border);
	background: #0e0b18;
}

.sh-site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 76px;
	gap: 28px;
}

.sh-site-branding,
.sh-site-branding .custom-logo-link {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
}

.sh-site-branding .custom-logo {
	width: auto;
	max-height: 50px;
}

.sh-site-logo {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--sh-color-text);
	font-family: var(--sh-font-serif);
	font-size: clamp(1.38rem, 2vw, 1.72rem);
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
}

.sh-site-logo__mark {
	color: var(--sh-color-accent);
	font-size: 1rem;
	text-shadow: 0 0 18px rgb(213 184 118 / 55%);
}

.sh-site-logo:hover {
	color: var(--sh-color-accent-hover);
}

.sh-header-navigation {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: 22px;
}

.sh-primary-navigation {
	min-width: 0;
}

.sh-primary-menu {
	display: flex;
	align-items: center;
	gap: clamp(12px, 1.6vw, 22px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.sh-primary-menu li {
	position: relative;
	margin: 0;
}

.sh-primary-menu a {
	display: flex;
	min-height: 44px;
	align-items: center;
	color: #ded7e4;
	font-size: 0.87rem;
	font-weight: 650;
	text-decoration: none;
	white-space: nowrap;
}

.sh-primary-menu a:hover,
.sh-primary-menu .current-menu-item > a,
.sh-primary-menu .current-menu-ancestor > a {
	color: var(--sh-color-accent-hover);
}

.sh-primary-menu .sub-menu {
	position: absolute;
	z-index: 20;
	top: 100%;
	left: 0;
	display: none;
	min-width: 230px;
	margin: 0;
	padding: 8px;
	border: 1px solid var(--sh-color-border);
	border-radius: var(--sh-radius-sm);
	background: var(--sh-color-surface-raised);
	box-shadow: var(--sh-shadow-soft);
	list-style: none;
}

.sh-primary-menu li:hover > .sub-menu,
.sh-primary-menu li:focus-within > .sub-menu {
	display: block;
}

.sh-primary-menu .sub-menu a {
	min-height: 40px;
	padding-inline: 10px;
	white-space: normal;
}

.sh-header-search {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	overflow: hidden;
	border: 1px solid var(--sh-color-border);
	border-radius: 999px;
	background: var(--sh-color-surface);
}

.sh-header-search:focus-within {
	border-color: var(--sh-color-accent);
}

.sh-header-search__input {
	width: 116px;
	min-height: 42px;
	padding: 8px 2px 8px 14px;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--sh-color-text);
}

.sh-header-search__input::placeholder,
.sh-footer-search input::placeholder {
	color: var(--sh-color-subtle);
}

.sh-header-search__submit {
	display: grid;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--sh-color-accent);
	cursor: pointer;
	place-items: center;
}

.sh-header-search__submit svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-width: 1.8;
}

.sh-menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 10px;
	border: 1px solid var(--sh-color-border);
	border-radius: var(--sh-radius-sm);
	background: var(--sh-color-surface);
	color: var(--sh-color-text);
	cursor: pointer;
}

.sh-menu-toggle__line {
	display: block;
	width: 100%;
	height: 2px;
	margin-block: 5px;
	background: currentColor;
	transition: transform 160ms ease, opacity 160ms ease;
}

.sh-site-main {
	min-height: 62vh;
	padding-block: clamp(34px, 5vw, 64px);
}

.sh-section-eyebrow {
	margin-bottom: 9px;
	color: var(--sh-color-accent);
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.sh-breadcrumbs {
	margin-bottom: clamp(24px, 4vw, 38px);
	color: var(--sh-color-subtle);
	font-size: 0.8rem;
}

.sh-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sh-breadcrumbs li {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.sh-breadcrumbs li:not(:last-child)::after {
	color: #5f566a;
	content: "/";
}

.sh-breadcrumbs a {
	color: #aaa0b3;
	text-decoration: none;
}

.sh-breadcrumbs a:hover {
	color: var(--sh-color-accent-hover);
}

.sh-button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	padding: 11px 22px;
	border: 0;
	border-radius: 999px;
	font-weight: 750;
	text-align: center;
	text-decoration: none;
}

.sh-button--primary {
	background: var(--sh-color-accent);
	box-shadow: 0 12px 35px rgb(213 184 118 / 17%);
	color: #17111f;
}

.sh-button--primary:hover {
	background: var(--sh-color-accent-hover);
	color: #17111f;
}

.sh-card-link {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	gap: 7px;
	color: var(--sh-color-accent);
	font-size: 0.83rem;
	font-weight: 750;
	text-decoration: none;
}

.sh-card-link:hover {
	color: var(--sh-color-accent-hover);
}

.sh-compact-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.sh-compact-card {
	overflow: hidden;
	min-width: 0;
	border: 1px solid var(--sh-color-border);
	border-radius: var(--sh-radius-md);
	background: linear-gradient(145deg, rgb(255 255 255 / 5%), rgb(255 255 255 / 2%));
	box-shadow: 0 14px 44px rgb(0 0 0 / 16%);
}

.sh-compact-card__media {
	display: grid;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: radial-gradient(circle, #35264d, #16101f 70%);
	place-items: center;
}

.sh-compact-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sh-compact-card__placeholder {
	color: var(--sh-color-accent);
	font-size: 2rem;
	text-shadow: 0 0 22px rgb(213 184 118 / 48%);
}

.sh-compact-card__body {
	padding: 17px;
}

.sh-compact-card__label {
	margin-bottom: 6px;
	color: var(--sh-color-accent);
	font-size: 0.62rem;
	font-weight: 750;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.sh-compact-card__title {
	margin-bottom: 8px;
	font-family: var(--sh-font-sans);
	font-size: 0.98rem;
	line-height: 1.35;
}

.sh-compact-card__title a {
	color: var(--sh-color-text);
	text-decoration: none;
}

.sh-compact-card__description {
	display: -webkit-box;
	overflow: hidden;
	margin-bottom: 8px;
	color: var(--sh-color-muted);
	font-size: 0.8rem;
	line-height: 1.5;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.sh-content-none {
	max-width: 680px;
	padding: 32px;
	border: 1px solid var(--sh-color-border);
	border-radius: var(--sh-radius-lg);
	background: var(--sh-color-surface);
}

.sh-content-none h2 {
	margin-bottom: 10px;
}

.sh-content-none p {
	margin: 0;
	color: var(--sh-color-muted);
}

.alignwide {
	width: min(100%, var(--sh-content-width));
}

.aligncenter {
	margin-right: auto;
	margin-left: auto;
}

.sh-site-footer {
	margin-top: clamp(56px, 8vw, 92px);
	border-top: 1px solid var(--sh-color-border);
	background: #090711;
}

.sh-site-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(190px, 0.7fr));
	gap: clamp(32px, 6vw, 76px);
	padding-block: clamp(46px, 7vw, 72px);
}

.sh-site-footer__brand {
	max-width: 400px;
}

.sh-site-footer__logo {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 14px;
	color: var(--sh-color-text);
	font-family: var(--sh-font-serif);
	font-size: 1.5rem;
	font-weight: 700;
	text-decoration: none;
}

.sh-site-footer__logo span {
	color: var(--sh-color-accent);
}

.sh-site-footer__description,
.sh-site-footer__note {
	margin-bottom: 10px;
	color: var(--sh-color-muted);
	font-size: 0.86rem;
}

.sh-site-footer__note {
	color: var(--sh-color-subtle);
}

.sh-site-footer__title {
	margin-bottom: 14px;
	font-family: var(--sh-font-sans);
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.sh-footer-menu {
	display: grid;
	gap: 3px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sh-footer-menu li {
	margin: 0;
}

.sh-footer-menu a {
	display: inline-flex;
	min-height: 36px;
	align-items: center;
	color: var(--sh-color-muted);
	font-size: 0.87rem;
	text-decoration: none;
}

.sh-footer-menu a:hover {
	color: var(--sh-color-accent-hover);
}

.sh-footer-search {
	display: grid;
	gap: 9px;
}

.sh-footer-search input {
	width: 100%;
	min-height: 44px;
	padding: 9px 12px;
	border: 1px solid var(--sh-color-border);
	border-radius: var(--sh-radius-sm);
	background: var(--sh-color-surface);
	color: var(--sh-color-text);
}

.sh-footer-search button {
	min-height: 44px;
	border: 0;
	border-radius: var(--sh-radius-sm);
	background: #30233e;
	color: var(--sh-color-text);
	cursor: pointer;
	font-weight: 700;
}

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

.sh-site-footer__bottom-inner {
	display: flex;
	min-height: 66px;
	align-items: center;
}

.sh-site-footer__bottom p {
	margin: 0;
	color: var(--sh-color-subtle);
	font-size: 0.82rem;
}

@media (max-width: 1040px) {
	.sh-menu-toggle {
		display: block;
		flex: 0 0 auto;
	}

	.sh-header-navigation {
		position: fixed;
		z-index: 99;
		inset: 77px 0 0;
		display: none;
		overflow-y: auto;
		align-items: stretch;
		flex-direction: column;
		gap: 22px;
		padding: 24px max(24px, calc((100vw - var(--sh-content-width)) / 2));
		background: #0e0b18;
	}

	.sh-site-header.is-menu-open .sh-header-navigation {
		display: flex;
	}

	.sh-site-header.is-menu-open .sh-menu-toggle__line:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.sh-site-header.is-menu-open .sh-menu-toggle__line:nth-child(2) {
		opacity: 0;
	}

	.sh-site-header.is-menu-open .sh-menu-toggle__line:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.sh-primary-navigation,
	.sh-header-search {
		width: 100%;
	}

	.sh-primary-menu {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.sh-primary-menu > li {
		border-bottom: 1px solid var(--sh-color-border);
	}

	.sh-primary-menu a {
		min-height: 50px;
		font-size: 1rem;
		white-space: normal;
	}

	.sh-primary-menu .sub-menu {
		position: static;
		display: block;
		min-width: 0;
		padding: 0 0 10px 18px;
		border: 0;
		background: transparent;
		box-shadow: none;
	}

	.sh-header-search__input {
		width: 100%;
	}

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

@media (max-width: 760px) {
	.sh-site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sh-site-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 600px) {
	.sh-container {
		width: min(calc(100% - 24px), var(--sh-content-width));
	}

	.sh-site-header__inner {
		min-height: 68px;
	}

	.sh-header-navigation {
		inset-block-start: 69px;
		padding: 20px 12px;
	}

	.sh-site-main {
		padding-block: 28px;
	}

	.sh-compact-grid {
		grid-template-columns: 1fr;
	}

	.sh-site-footer__grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.sh-site-footer__brand {
		grid-column: auto;
	}
}

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

	.sh-menu-toggle__line {
		transition: none;
	}
}
