:root {
	--color-night: #070606;
	--color-night-soft: #100b0b;
	--color-wine: #3a0f16;
	--color-gold: #c7a15a;
	--color-gold-bright: #e0c27a;
	--color-ivory: #e8dcc2;
	--color-parchment: #c9bea6;
	--color-muted: rgba(232, 220, 194, 0.76);
	--font-title: "Cinzel", "Cormorant Garamond", Georgia, serif;
	--font-serif: "Cormorant Garamond", Georgia, serif;
	--font-body: "Inter", "Segoe UI", sans-serif;
	--sticky-header-offset: 112px;
	--site-max: 1320px;
	--site-medium-max: 1200px;
	--site-wide-max: 1400px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--sticky-header-offset);
	background: var(--color-night);
}

[id] {
	scroll-margin-top: var(--sticky-header-offset);
}

body {
	margin: 0;
	color: var(--color-ivory);
	background:
		radial-gradient(circle at 78% 35%, rgba(184, 138, 59, 0.10), transparent 32rem),
		radial-gradient(circle at 68% 42%, rgba(58, 15, 22, 0.25), transparent 35rem),
		linear-gradient(135deg, var(--color-night) 0%, #090707 45%, #030303 100%);
	font-family: var(--font-body);
	overflow-x: hidden;
}

body::before {
	position: fixed;
	inset: 0;
	z-index: -2;
	content: "";
	pointer-events: none;
	background:
		linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px),
		radial-gradient(circle at 20% 10%, rgba(232, 220, 194, 0.05), transparent 20rem);
	background-size: 42px 42px, 42px 42px, auto;
	opacity: 0.42;
}

body::after {
	position: fixed;
	inset: 0;
	z-index: -1;
	content: "";
	pointer-events: none;
	background-image:
		radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1.5px),
		radial-gradient(circle at 42% 64%, rgba(199, 161, 90, 0.11) 0 1px, transparent 1.5px),
		radial-gradient(circle at 84% 18%, rgba(232, 220, 194, 0.12) 0 1px, transparent 1.5px);
	background-size: 19rem 19rem, 23rem 23rem, 29rem 29rem;
	opacity: 0.35;
}

a {
	color: inherit;
	text-decoration: none;
}

.site-shell {
	position: relative;
	min-height: 100vh;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(var(--site-wide-max), calc(100% - 48px));
	margin: 0 auto;
	padding: 14px 0;
	border-bottom: 1px solid rgba(199, 161, 90, 0.12);
	background:
		linear-gradient(180deg, rgba(7, 6, 6, 0.94), rgba(7, 6, 6, 0.72));
	backdrop-filter: blur(12px);
}

.brand-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: clamp(56px, 6vw, 76px);
	height: clamp(56px, 6vw, 76px);
	opacity: 0;
	animation: logo-reveal 0.4s ease-out 0.05s forwards, logo-shimmer 1.8s ease-out 0.55s 1;
}

.brand-mark img {
	display: block;
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 0 18px rgba(199, 161, 90, 0.16));
}

.hero-nav {
	display: flex;
	gap: clamp(16px, 2vw, 30px);
	align-items: center;
	color: rgba(232, 220, 194, 0.72);
	font-family: var(--font-body);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.17em;
	text-transform: uppercase;
}

.hero-nav a {
	position: relative;
	white-space: nowrap;
	transition: color 180ms ease;
}

.hero-nav a::after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -8px;
	height: 1px;
	content: "";
	background: var(--color-gold);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 180ms ease;
}

.hero-nav a:hover,
.hero-nav a:focus-visible {
	color: var(--color-gold);
}

.hero-nav a:hover::after,
.hero-nav a:focus-visible::after {
	transform: scaleX(1);
}

.hero-section {
	position: relative;
	min-height: 100vh;
	padding: 76px 24px 72px;
	overflow: hidden;
	isolation: isolate;
}

.hero-content {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
	gap: clamp(36px, 6vw, 86px);
	align-items: center;
	width: min(var(--site-max), 100%);
	min-height: calc(100vh - 220px);
	margin: 0 auto;
}

.hero-copy {
	max-width: 600px;
}

.eyebrow {
	margin: 0 0 18px;
	color: #a78344;
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.23em;
	line-height: 1.5;
	text-transform: uppercase;
}

.hero-copy .eyebrow {
	opacity: 0;
	animation: fade-up 0.5s ease-out 0.26s forwards;
}

h1,
h2 {
	margin: 0;
	font-family: var(--font-title);
	font-weight: 500;
	text-transform: uppercase;
}

h1 {
	max-width: 9ch;
	color: var(--color-ivory);
	font-size: clamp(4.5rem, 9.4vw, 6.5rem);
	letter-spacing: 0.075em;
	line-height: 0.96;
	text-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
	opacity: 0;
	animation: title-rise 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.38s forwards;
}

.hero-subtitle {
	margin: 24px 0 0;
	color: var(--color-gold);
	font-family: var(--font-serif);
	font-size: clamp(1.45rem, 2.2vw, 1.9rem);
	font-style: italic;
	line-height: 1.25;
	opacity: 0;
	animation: fade-up 0.9s ease-out 0.62s forwards;
}

.hero-prose {
	max-width: 560px;
	margin: 24px 0 0;
	color: var(--color-parchment);
	font-family: var(--font-serif);
	font-size: clamp(1.08rem, 1.35vw, 1.24rem);
	line-height: 1.68;
	opacity: 0;
	animation: fade-up 0.9s ease-out 0.72s forwards;
}

.hero-prose p {
	margin: 0 0 16px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 34px 0 0;
	opacity: 0;
	animation: fade-up 1.1s ease-out 0.92s forwards;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 14px 24px;
	border: 1px solid transparent;
	border-radius: 5px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-1px);
}

.button-primary {
	border-color: var(--color-gold);
	color: var(--color-night);
	background: var(--color-gold);
	box-shadow: 0 12px 30px rgba(199, 161, 90, 0.13);
}

.button-primary:hover,
.button-primary:focus-visible {
	background: var(--color-gold-bright);
	box-shadow: 0 0 24px rgba(224, 194, 122, 0.3), 0 12px 30px rgba(199, 161, 90, 0.16);
}

.button-secondary {
	border-color: rgba(232, 220, 194, 0.35);
	color: var(--color-ivory);
	background: rgba(232, 220, 194, 0.02);
}

.button-secondary:hover,
.button-secondary:focus-visible {
	border-color: var(--color-gold);
	color: var(--color-gold);
}

.hero-note {
	margin: 16px 0 0;
	color: rgba(232, 220, 194, 0.62);
	font-family: var(--font-serif);
	font-size: 1rem;
	font-style: italic;
	opacity: 0;
	animation: fade-up 1.1s ease-out 1.02s forwards;
}

.hero-visual {
	position: relative;
	min-height: clamp(430px, 55vw, 650px);
	border: 1px solid rgba(199, 161, 90, 0.13);
	border-radius: 28px;
	background:
		radial-gradient(circle at 44% 56%, rgba(199, 161, 90, 0.18), transparent 16rem),
		radial-gradient(circle at 63% 38%, rgba(58, 15, 22, 0.45), transparent 21rem),
		linear-gradient(145deg, rgba(58, 15, 22, 0.22), rgba(3, 3, 3, 0.15) 55%, rgba(199, 161, 90, 0.05));
	box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.48), 0 38px 90px rgba(0, 0, 0, 0.42);
	overflow: hidden;
	opacity: 0;
	transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
	animation: visual-awaken 1.2s ease-out 0.42s forwards;
	transition: transform 240ms ease-out;
}

.hero-placeholder-image {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.hero-visual::before {
	position: absolute;
	inset: -35%;
	content: "";
	background:
		radial-gradient(circle, rgba(232, 220, 194, 0.17) 0 1px, transparent 1.5px),
		radial-gradient(circle, rgba(199, 161, 90, 0.10) 0 1px, transparent 1.5px);
	background-position: 0 0, 5rem 7rem;
	background-size: 11rem 11rem, 17rem 17rem;
	opacity: 0.22;
	animation: star-drift 18s linear infinite;
}

.hero-visual::after {
	position: absolute;
	inset: auto 4% 2% 4%;
	height: 44%;
	content: "";
	border-radius: 50%;
	background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.34), transparent 70%);
	filter: blur(14px);
}

.table-glow {
	position: absolute;
	inset: 18% 4% 4%;
	border-radius: 50%;
	background:
		radial-gradient(ellipse at 38% 58%, rgba(235, 172, 83, 0.24), transparent 33%),
		radial-gradient(ellipse at 60% 72%, rgba(72, 28, 16, 0.6), transparent 45%),
		linear-gradient(105deg, rgba(68, 35, 18, 0.62), rgba(21, 10, 8, 0.92));
	transform: rotate(-8deg);
	box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.46);
}

.leather-case {
	position: absolute;
	top: 13%;
	right: 4%;
	width: 47%;
	height: 27%;
	border: 1px solid rgba(199, 161, 90, 0.22);
	border-radius: 18px;
	background:
		linear-gradient(120deg, rgba(107, 52, 32, 0.65), rgba(33, 14, 13, 0.95)),
		repeating-linear-gradient(30deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 5px);
	box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.55), 0 24px 40px rgba(0, 0, 0, 0.3);
	transform: rotate(8deg);
	filter: blur(0.3px);
	opacity: 0.8;
}

.leather-case span {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 34px;
	height: 18px;
	border: 1px solid rgba(224, 194, 122, 0.45);
	border-radius: 4px;
	background: rgba(199, 161, 90, 0.22);
	transform: translate(-50%, -50%);
}

.parchment-edge {
	position: absolute;
	right: 12%;
	bottom: 12%;
	width: 36%;
	height: 10%;
	border-radius: 3px;
	background: linear-gradient(100deg, rgba(232, 220, 194, 0.6), rgba(170, 128, 69, 0.26));
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
	transform: rotate(-10deg);
	opacity: 0.52;
}

.hourglass {
	position: absolute;
	top: 25%;
	left: 52%;
	width: 132px;
	height: 232px;
	transform: rotate(4deg);
	filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.42));
}

.hourglass-frame {
	position: absolute;
	left: 11px;
	width: 110px;
	height: 15px;
	border-radius: 999px;
	background: linear-gradient(90deg, #8d6835, #e0c27a 48%, #6e4b25);
	box-shadow: 0 0 18px rgba(199, 161, 90, 0.15);
}

.hourglass-frame.top {
	top: 0;
}

.hourglass-frame.bottom {
	bottom: 0;
}

.hourglass-frame::before,
.hourglass-frame::after {
	position: absolute;
	top: 9px;
	width: 7px;
	height: 198px;
	content: "";
	border-radius: 999px;
	background: linear-gradient(#c7a15a, #5d3d20);
}

.hourglass-frame::before {
	left: 10px;
	transform: rotate(-4deg);
}

.hourglass-frame::after {
	right: 10px;
	transform: rotate(4deg);
}

.hourglass-glass {
	position: absolute;
	top: 22px;
	left: 28px;
	width: 76px;
	height: 188px;
	clip-path: polygon(8% 0, 92% 0, 57% 48%, 92% 100%, 8% 100%, 43% 48%);
	background: linear-gradient(90deg, rgba(232, 220, 194, 0.18), rgba(255, 255, 255, 0.04), rgba(232, 220, 194, 0.2));
	border: 1px solid rgba(232, 220, 194, 0.22);
}

.sand {
	position: absolute;
	left: 15px;
	right: 15px;
	background: rgba(224, 194, 122, 0.78);
	filter: blur(0.1px);
}

.sand-top {
	top: 25px;
	height: 48px;
	clip-path: polygon(0 0, 100% 0, 58% 100%, 42% 100%);
	animation: sand-top-fall 5s ease-in-out infinite;
}

.sand-bottom {
	bottom: 21px;
	height: 44px;
	clip-path: polygon(44% 0, 56% 0, 100% 100%, 0 100%);
	animation: sand-bottom-rise 5s ease-in-out infinite;
}

.sand-stream {
	position: absolute;
	top: 79px;
	left: 50%;
	width: 2px;
	height: 48px;
	background: rgba(224, 194, 122, 0.82);
	transform: translateX(-50%);
	animation: sand-stream 1.2s linear infinite;
}

.dice-scatter {
	position: absolute;
	inset: 0;
	z-index: 2;
}

.die {
	position: absolute;
	display: grid;
	place-items: center;
	width: 78px;
	height: 78px;
	border: 1px solid rgba(80, 42, 22, 0.82);
	border-radius: 14px;
	color: #24120d;
	background:
		radial-gradient(circle at 28% 24%, rgba(255, 237, 186, 0.82), transparent 34%),
		linear-gradient(145deg, #c6904e, #7d421e 62%, #412112);
	box-shadow: inset 8px 8px 18px rgba(255, 235, 178, 0.12), inset -10px -14px 24px rgba(0, 0, 0, 0.36), 0 22px 26px rgba(0, 0, 0, 0.48);
	transform-style: preserve-3d;
}

/* The CSS dice are temporary art direction markers until final photography or rendered assets are supplied. */
.die::before {
	position: absolute;
	inset: 8px;
	content: "";
	border: 1px solid rgba(36, 18, 13, 0.32);
	border-radius: 10px;
}

.die-symbol {
	position: relative;
	z-index: 2;
	font-family: Georgia, serif;
	font-size: 2.2rem;
	line-height: 1;
	text-shadow: 0 1px 0 rgba(255, 230, 180, 0.18);
}

.die-halo {
	position: absolute;
	z-index: 1;
	width: 45px;
	height: 45px;
	border: 2px solid rgba(36, 18, 13, 0.72);
}

.halo-round {
	border-radius: 50%;
}

.halo-square {
	border-radius: 4px;
}

.halo-pentagon {
	clip-path: polygon(50% 2%, 97% 38%, 78% 98%, 22% 98%, 3% 38%);
	background: rgba(36, 18, 13, 0.04);
}

.halo-curved {
	width: 50px;
	height: 38px;
	border-radius: 50% 50% 10px 10px;
	border-bottom-color: transparent;
}

.dots {
	position: absolute;
	right: 10px;
	bottom: 7px;
	color: rgba(36, 18, 13, 0.82);
	font-size: 0.88rem;
	letter-spacing: 0.04em;
}

.die-focus {
	right: 25%;
	bottom: 21%;
	width: 118px;
	height: 118px;
	border-radius: 19px;
	transform: rotate(-9deg);
}

.die-focus .die-symbol {
	color: #160d09;
	font-size: 3.8rem;
}

.die-sun {
	left: 18%;
	bottom: 28%;
	transform: rotate(17deg) scale(0.92);
	filter: blur(0.15px);
}

.die-moon {
	right: 13%;
	bottom: 43%;
	transform: rotate(16deg) scale(0.82);
	opacity: 0.8;
	filter: blur(0.5px);
}

.die-star {
	left: 36%;
	bottom: 13%;
	transform: rotate(-18deg) scale(0.88);
}

.die-crown-small {
	left: 13%;
	top: 33%;
	transform: rotate(-11deg) scale(0.72);
	opacity: 0.62;
	filter: blur(0.8px);
}

.die-curved {
	right: 36%;
	bottom: 35%;
	transform: rotate(26deg) scale(0.76);
	opacity: 0.82;
}

.die-shadow {
	right: 18%;
	top: 54%;
	transform: rotate(-28deg) scale(0.66);
	opacity: 0.35;
	filter: blur(1.2px);
}

.star-map {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		linear-gradient(110deg, transparent 10%, rgba(199, 161, 90, 0.06) 10.2%, transparent 10.4%),
		linear-gradient(28deg, transparent 25%, rgba(232, 220, 194, 0.04) 25.15%, transparent 25.3%),
		linear-gradient(164deg, transparent 55%, rgba(199, 161, 90, 0.045) 55.12%, transparent 55.25%);
	opacity: 0.24;
	animation: star-drift 28s linear infinite;
}

.dust-field {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background-image:
		radial-gradient(circle, rgba(232, 220, 194, 0.22) 0 1px, transparent 1.5px),
		radial-gradient(circle, rgba(199, 161, 90, 0.16) 0 1px, transparent 1.5px);
	background-position: 3rem 2rem, 8rem 12rem;
	background-size: 17rem 17rem, 23rem 23rem;
	opacity: 0.18;
	animation: dust-float 16s ease-in-out infinite alternate;
}

.legend-section {
	position: relative;
	min-height: 92vh;
	padding: 0 24px 108px;
	overflow: hidden;
	background:
		radial-gradient(circle at 25% 30%, rgba(199, 161, 90, 0.08), transparent 23rem),
		radial-gradient(circle at 76% 45%, rgba(92, 26, 36, 0.18), transparent 31rem),
		linear-gradient(180deg, #070606 0%, #120a0c 48%, #090707 100%);
	isolation: isolate;
}

.legend-section::before {
	position: absolute;
	inset: 0;
	z-index: -2;
	content: "";
	background:
		repeating-linear-gradient(18deg, rgba(232, 220, 194, 0.035) 0 1px, transparent 1px 7px),
		repeating-linear-gradient(102deg, rgba(199, 161, 90, 0.022) 0 1px, transparent 1px 9px);
	opacity: 0.52;
	mix-blend-mode: screen;
}

.legend-section::after {
	position: absolute;
	top: 12%;
	left: 7%;
	z-index: -1;
	width: clamp(13rem, 25vw, 25rem);
	height: clamp(13rem, 25vw, 25rem);
	content: "";
	background: url("assets/icon-sun-gold.png") center / contain no-repeat;
	opacity: 0.045;
	transform: rotate(-12deg);
}

.chapter-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	width: min(260px, 70vw);
	margin: 0 auto 76px;
	padding-top: 30px;
	color: var(--color-gold);
	opacity: 0.7;
}

.chapter-divider span {
	width: 74px;
	height: 1px;
	background: rgba(199, 161, 90, 0.35);
}

.chapter-divider strong {
	display: inline-grid;
	place-items: center;
	width: 22px;
	height: 22px;
	border: 1px solid rgba(199, 161, 90, 0.34);
	border-radius: 50%;
	font-family: Georgia, serif;
	font-size: 0.78rem;
	font-weight: 400;
	line-height: 1;
}

.divider-icon-img,
.inline-icon-img,
.quote-icon-img,
.notice-icon-img,
.sign-card-symbol img,
.experience-card-icon-img {
	display: block;
	object-fit: contain;
	object-position: center;
	filter: drop-shadow(0 0 12px rgba(199, 161, 90, 0.16));
}

.divider-icon-img {
	width: 16px;
	height: 16px;
}

.inline-icon-img {
	width: 24px;
	height: 24px;
}

.quote-icon-img,
.notice-icon-img {
	width: 30px;
	height: 30px;
	margin: 0 auto 10px;
}

.sign-card-symbol img {
	width: 30px;
	height: 30px;
}

.experience-card-icon-img {
	width: 34px;
	height: 34px;
	margin-bottom: 16px;
	opacity: 0.78;
	transition: opacity 200ms ease, filter 200ms ease, transform 200ms ease;
}

.experience-card:hover .experience-card-icon-img,
.experience-card:focus-within .experience-card-icon-img {
	opacity: 1;
	filter: drop-shadow(0 0 22px rgba(224, 194, 122, 0.26));
	transform: translateY(-1px);
}

.legend-content {
	display: grid;
	grid-template-columns: minmax(0, 0.96fr) minmax(440px, 1.04fr);
	gap: clamp(42px, 7vw, 102px);
	align-items: center;
	width: min(var(--site-max), 100%);
	margin: 0 auto;
}

.legend-copy {
	position: relative;
	max-width: 620px;
}

.legend-copy h2 {
	max-width: 11ch;
	color: var(--color-ivory);
	font-size: clamp(3rem, 5.6vw, 4rem);
	letter-spacing: 0.05em;
	line-height: 1.05;
	text-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}

.legend-prose {
	margin: 30px 0 0;
	color: var(--color-parchment);
	font-family: var(--font-serif);
	font-size: clamp(1.06rem, 1.35vw, 1.18rem);
	line-height: 1.75;
}

.legend-prose p {
	margin: 0 0 17px;
}

.legend-prose strong {
	color: var(--color-ivory);
	font-weight: 500;
}

.legend-vow {
	position: relative;
	margin: 28px 0 30px;
	padding: 3px 0 4px 22px;
	color: var(--color-ivory);
	font-family: var(--font-serif);
	font-size: clamp(1.18rem, 1.6vw, 1.38rem);
	font-style: italic;
	line-height: 1.8;
}

.legend-vow::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 1px;
	content: "";
	background: linear-gradient(180deg, transparent, rgba(199, 161, 90, 0.74), transparent);
}

.legend-vow p {
	margin: 0;
}

.legend-button {
	margin-top: 12px;
	border-color: rgba(199, 161, 90, 0.55);
	color: var(--color-gold);
	background: transparent;
}

.legend-button:hover,
.legend-button:focus-visible {
	border-color: var(--color-gold);
	color: var(--color-ivory);
	background: rgba(199, 161, 90, 0.08);
}

.legend-note {
	margin: 12px 0 0;
	color: #827761;
	font-family: var(--font-serif);
	font-size: 0.92rem;
	font-style: italic;
}

.history-panel {
	width: min(920px, 100%);
	margin: 72px auto 0;
}

.history-inner {
	padding: clamp(28px, 4vw, 46px);
	border: 1px solid rgba(199, 161, 90, 0.22);
	border-radius: 14px;
	background:
		radial-gradient(circle at 50% 0%, rgba(199, 161, 90, 0.07), transparent 18rem),
		linear-gradient(180deg, rgba(18, 12, 10, 0.98), rgba(8, 6, 5, 0.99));
	box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
}

.history-inner h3 {
	margin: 0 0 26px;
	color: var(--color-ivory);
	font-family: var(--font-title);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.08;
	text-transform: uppercase;
}

.history-inner h4 {
	margin: 38px 0 14px;
	color: var(--color-gold);
	font-family: var(--font-title);
	font-size: clamp(1.35rem, 2.4vw, 1.8rem);
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.18;
	text-transform: uppercase;
}

.history-inner p {
	margin: 0 0 16px;
	color: var(--color-parchment);
	font-family: var(--font-serif);
	font-size: clamp(1.04rem, 1.25vw, 1.14rem);
	line-height: 1.75;
}

.history-inner strong {
	color: var(--color-ivory);
	font-weight: 500;
}

.legend-panels {
	position: relative;
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	min-height: 530px;
	perspective: 1100px;
}

.legend-panels::before {
	position: absolute;
	inset: 10% 0 8%;
	z-index: -1;
	content: "";
	border-radius: 50%;
	background: radial-gradient(ellipse at center, rgba(92, 26, 36, 0.32), transparent 64%);
	filter: blur(6px);
}

.legend-card {
	--legend-rotate: 0deg;
	--legend-y: 0px;
	--legend-parallax: 0px;
	position: relative;
	grid-row: 1;
	align-self: center;
	width: clamp(220px, 22vw, 280px);
	height: clamp(360px, 42vw, 440px);
	border: 1px solid rgba(199, 161, 90, 0.22);
	border-radius: 6px;
	background: #110c0c;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
	overflow: hidden;
	transform: translateY(calc(var(--legend-y) + var(--legend-parallax))) rotate(var(--legend-rotate));
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.legend-card:hover,
.legend-card:focus-within {
	border-color: rgba(199, 161, 90, 0.48);
	box-shadow: 0 30px 92px rgba(0, 0, 0, 0.6), 0 0 32px rgba(199, 161, 90, 0.08);
	transform: translateY(calc(var(--legend-y) + var(--legend-parallax) - 4px)) rotate(var(--legend-rotate));
}

.legend-card img {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.legend-card::before {
	position: absolute;
	inset: 0;
	content: "";
	background: var(--legend-card-bg);
	filter: saturate(0.82) contrast(1.08);
}

.legend-card::after {
	position: absolute;
	inset: 0;
	content: "";
	background:
		radial-gradient(circle at 34% 20%, rgba(232, 220, 194, 0.2), transparent 18%),
		linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0.82) 100%),
		radial-gradient(ellipse at center, transparent 42%, rgba(0, 0, 0, 0.55) 100%);
}

.legend-card-england {
	--legend-rotate: -6deg;
	--legend-y: 42px;
	--legend-card-bg:
		linear-gradient(145deg, rgba(70, 15, 22, 0.96), rgba(14, 8, 9, 0.95)),
		radial-gradient(circle at 62% 32%, rgba(199, 161, 90, 0.28), transparent 24%),
		repeating-linear-gradient(90deg, rgba(232, 220, 194, 0.04) 0 1px, transparent 1px 6px);
	grid-column: 1 / 6;
	z-index: 1;
}

.legend-card-rome {
	--legend-rotate: 2deg;
	--legend-y: 4px;
	--legend-card-bg:
		linear-gradient(135deg, rgba(36, 22, 15, 0.98), rgba(8, 8, 8, 0.92)),
		radial-gradient(circle at 28% 44%, rgba(199, 161, 90, 0.22), transparent 26%),
		linear-gradient(35deg, transparent 36%, rgba(232, 220, 194, 0.12) 36.3%, transparent 36.7%),
		linear-gradient(108deg, transparent 54%, rgba(232, 220, 194, 0.09) 54.2%, transparent 54.6%);
	grid-column: 4 / 9;
	z-index: 3;
}

.legend-card-france {
	--legend-rotate: 7deg;
	--legend-y: 58px;
	--legend-card-bg:
		linear-gradient(150deg, rgba(41, 24, 31, 0.96), rgba(10, 7, 9, 0.96)),
		radial-gradient(circle at 44% 22%, rgba(224, 194, 122, 0.27), transparent 22%),
		repeating-linear-gradient(120deg, rgba(232, 220, 194, 0.045) 0 2px, transparent 2px 12px);
	grid-column: 8 / 13;
	z-index: 2;
}

.legend-card-art {
	position: absolute;
	inset: 0;
	z-index: 2;
}

.legend-card-art::before {
	position: absolute;
	left: 17%;
	right: 17%;
	bottom: 30%;
	height: 28%;
	content: "";
	border-radius: 50%;
	background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.45), transparent 72%);
	transform: rotate(-8deg);
}

.legend-symbol {
	position: absolute;
	top: 18%;
	left: 50%;
	display: block;
	width: clamp(76px, 9vw, 112px);
	height: clamp(76px, 9vw, 112px);
	transform: translateX(-50%);
	transition: filter 220ms ease;
}

.legend-symbol img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 0 18px rgba(199, 161, 90, 0.12));
}

.legend-card:hover .legend-symbol,
.legend-card:focus-within .legend-symbol {
	filter: drop-shadow(0 0 22px rgba(224, 194, 122, 0.22));
}

.legend-halo {
	position: absolute;
	right: 22px;
	top: 20px;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(199, 161, 90, 0.5);
	opacity: 0.7;
}

.legend-halo-round {
	border-radius: 50%;
}

.legend-halo-square {
	border-radius: 3px;
}

.legend-halo-curved {
	width: 48px;
	height: 34px;
	border-bottom-color: transparent;
	border-radius: 50% 50% 12px 12px;
}

.legend-card-caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	padding: 78px 24px 24px;
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82) 54%, rgba(0, 0, 0, 0.94));
	opacity: 0.7;
	transition: opacity 220ms ease;
}

.legend-card:hover .legend-card-caption,
.legend-card:focus-within .legend-card-caption {
	opacity: 1;
}

.legend-card-caption h3 {
	margin: 0 0 8px;
	color: var(--color-gold);
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.legend-card-caption p {
	margin: 0;
	color: var(--color-ivory);
	font-family: var(--font-serif);
	font-size: 1.18rem;
	line-height: 1.28;
}

body.reveal-ready .legend-section .chapter-divider,
body.reveal-ready .legend-section .eyebrow,
body.reveal-ready .legend-section h2,
body.reveal-ready .legend-prose > p,
body.reveal-ready .legend-vow,
body.reveal-ready .legend-button,
body.reveal-ready .legend-note,
body.reveal-ready .legend-card {
	opacity: 0;
}

body.reveal-ready .legend-section .chapter-divider {
	transform: translateY(8px);
}

body.reveal-ready .legend-section .eyebrow,
body.reveal-ready .legend-section h2,
body.reveal-ready .legend-prose > p,
body.reveal-ready .legend-vow,
body.reveal-ready .legend-button,
body.reveal-ready .legend-note {
	transform: translateY(14px);
}

body.reveal-ready .legend-card {
	transform: translateX(18px) translateY(calc(var(--legend-y) + var(--legend-parallax))) rotate(var(--legend-rotate));
}

body.reveal-ready .legend-section.is-visible .chapter-divider,
body.reveal-ready .legend-section.is-visible .eyebrow,
body.reveal-ready .legend-section.is-visible h2,
body.reveal-ready .legend-section.is-visible .legend-prose > p,
body.reveal-ready .legend-section.is-visible .legend-vow,
body.reveal-ready .legend-section.is-visible .legend-button,
body.reveal-ready .legend-section.is-visible .legend-note,
body.reveal-ready .legend-section.is-visible .legend-card {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 760ms ease, transform 900ms cubic-bezier(0.19, 1, 0.22, 1);
}

body.reveal-ready .legend-section.is-visible .legend-card {
	transform: translateY(calc(var(--legend-y) + var(--legend-parallax))) rotate(var(--legend-rotate));
	transition: opacity 760ms ease, transform 900ms cubic-bezier(0.19, 1, 0.22, 1), border-color 220ms ease, box-shadow 220ms ease;
}

body.reveal-ready .legend-section.is-visible .legend-card:hover,
body.reveal-ready .legend-section.is-visible .legend-card:focus-within {
	transform: translateY(calc(var(--legend-y) + var(--legend-parallax) - 4px)) rotate(var(--legend-rotate));
}

body.reveal-ready .legend-section.is-visible .chapter-divider {
	transition-delay: 60ms;
}

body.reveal-ready .legend-section.is-visible .eyebrow {
	transition-delay: 150ms;
}

body.reveal-ready .legend-section.is-visible h2 {
	transition-delay: 230ms;
}

body.reveal-ready .legend-section.is-visible .legend-prose > p:nth-child(1) {
	transition-delay: 340ms;
}

body.reveal-ready .legend-section.is-visible .legend-prose > p:nth-child(2) {
	transition-delay: 430ms;
}

body.reveal-ready .legend-section.is-visible .legend-prose > p:nth-child(3) {
	transition-delay: 520ms;
}

body.reveal-ready .legend-section.is-visible .legend-prose > p:nth-child(4) {
	transition-delay: 610ms;
}

body.reveal-ready .legend-section.is-visible .legend-prose > p:nth-child(5),
body.reveal-ready .legend-section.is-visible .legend-vow {
	transition-delay: 700ms;
}

body.reveal-ready .legend-section.is-visible .legend-prose > p:nth-child(7) {
	transition-delay: 790ms;
}

body.reveal-ready .legend-section.is-visible .legend-prose > p:nth-child(8),
body.reveal-ready .legend-section.is-visible .legend-button,
body.reveal-ready .legend-section.is-visible .legend-note {
	transition-delay: 880ms;
}

body.reveal-ready .legend-section.is-visible .legend-card-rome {
	transition-delay: 360ms;
}

body.reveal-ready .legend-section.is-visible .legend-card-england {
	transition-delay: 500ms;
}

body.reveal-ready .legend-section.is-visible .legend-card-france {
	transition-delay: 640ms;
}

/* Section 3 shifts from mythic atmosphere to clear gameplay explanation while preserving the luxury visual language. */
.game-section {
	position: relative;
	padding: 120px 24px;
	overflow: hidden;
	border-top: 1px solid rgba(199, 161, 90, 0.14);
	border-bottom: 1px solid rgba(199, 161, 90, 0.14);
	background:
		radial-gradient(circle at 70% 48%, rgba(42, 23, 16, 0.35), transparent 30rem),
		linear-gradient(135deg, rgba(199, 161, 90, 0.035) 0 1px, transparent 1px),
		linear-gradient(45deg, rgba(232, 220, 194, 0.024) 0 1px, transparent 1px),
		linear-gradient(180deg, #090807 0%, #0c0806 54%, #080706 100%);
	background-size: auto, 92px 92px, 124px 124px, auto;
	isolation: isolate;
}

.game-section::before {
	position: absolute;
	inset: 0;
	z-index: -2;
	content: "";
	background:
		radial-gradient(circle at 12% 28%, rgba(199, 161, 90, 0.035), transparent 2px),
		radial-gradient(circle at 12% 28%, transparent 18px, rgba(199, 161, 90, 0.032) 19px, transparent 20px),
		linear-gradient(90deg, transparent 48%, rgba(199, 161, 90, 0.03) 48.4%, transparent 48.8%),
		linear-gradient(135deg, transparent 58%, rgba(199, 161, 90, 0.026) 58.4%, transparent 58.8%);
	background-size: 220px 220px, 220px 220px, 180px 180px, 240px 240px;
	opacity: 0.7;
}

.game-section::after {
	position: absolute;
	left: 7%;
	top: 18%;
	z-index: -1;
	width: clamp(12rem, 23vw, 24rem);
	height: clamp(12rem, 23vw, 24rem);
	content: "";
	background: url("assets/icon-moon-gold.png") center / contain no-repeat;
	opacity: 0.032;
	transform: rotate(-18deg);
}

.game-content {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
	gap: clamp(44px, 7vw, 96px);
	align-items: center;
	width: min(var(--site-max), 100%);
	margin: 0 auto;
}

.game-copy {
	max-width: 640px;
}

.game-copy h2 {
	max-width: 12ch;
	color: var(--color-ivory);
	font-size: clamp(2.85rem, 5.2vw, 3.75rem);
	letter-spacing: 0.04em;
	line-height: 1.08;
}

.game-prose {
	margin-top: 30px;
	color: var(--color-parchment);
	font-family: var(--font-serif);
	font-size: clamp(1.04rem, 1.32vw, 1.18rem);
	line-height: 1.75;
}

.game-prose p {
	margin: 0 0 17px;
}

.term {
	position: relative;
	display: inline-block;
	color: var(--color-gold);
	font-weight: 500;
	text-shadow: 0 0 18px rgba(199, 161, 90, 0.07);
}

.term[data-tooltip] {
	cursor: help;
}

.term[data-tooltip]::before,
.term[data-tooltip]::after {
	position: absolute;
	left: 50%;
	z-index: 20;
	pointer-events: none;
	opacity: 0;
	transform: translate(-50%, 8px);
	transition: opacity 160ms ease, transform 160ms ease;
}

.term[data-tooltip]::before {
	bottom: calc(100% + 10px);
	width: max-content;
	max-width: 210px;
	padding: 9px 11px;
	border: 1px solid rgba(199, 161, 90, 0.25);
	border-radius: 6px;
	color: var(--color-ivory);
	background: #120d0b;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
	content: "✦  " attr(data-tooltip);
	font-family: var(--font-body);
	font-size: 0.76rem;
	line-height: 1.35;
	white-space: normal;
}

.term[data-tooltip]::after {
	bottom: calc(100% + 5px);
	width: 8px;
	height: 8px;
	border-right: 1px solid rgba(199, 161, 90, 0.25);
	border-bottom: 1px solid rgba(199, 161, 90, 0.25);
	background: #120d0b;
	content: "";
	transform: translate(-50%, 8px) rotate(45deg);
}

.term[data-tooltip]:hover::before,
.term[data-tooltip]:hover::after,
.term[data-tooltip]:focus-visible::before,
.term[data-tooltip]:focus-visible::after {
	opacity: 1;
	transform: translate(-50%, 0);
}

.term[data-tooltip]:hover::after,
.term[data-tooltip]:focus-visible::after {
	transform: translate(-50%, 0) rotate(45deg);
}

.game-truths {
	position: relative;
	margin: 30px 0;
	padding: 4px 0 4px 22px;
	color: var(--color-ivory);
	font-family: var(--font-serif);
	font-size: clamp(1.16rem, 1.6vw, 1.32rem);
	font-style: italic;
	line-height: 1.8;
}

.game-truths::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 1px;
	content: "";
	background: linear-gradient(180deg, rgba(199, 161, 90, 0.12), rgba(199, 161, 90, 0.8), rgba(199, 161, 90, 0.12));
	transform-origin: top;
}

.game-truths p {
	margin: 0;
}

.game-closing {
	margin: 34px 0 0;
	color: var(--color-gold);
	font-family: var(--font-serif);
	font-size: 1.18rem;
	font-style: italic;
	line-height: 1.45;
}

.glance-panel {
	position: relative;
	padding: clamp(32px, 4vw, 42px);
	border: 1px solid rgba(199, 161, 90, 0.22);
	border-radius: 12px;
	background: linear-gradient(145deg, #110c0a 0%, #0d0908 48%, #080706 100%);
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
	overflow: hidden;
}

.glance-panel::before {
	position: absolute;
	inset: 0;
	content: "";
	background:
		linear-gradient(rgba(8, 7, 6, 0.72), rgba(8, 7, 6, 0.78)),
		url("assets/10.png") center bottom 18px / min(88%, 520px) auto no-repeat,
		radial-gradient(circle at 50% 24%, rgba(199, 161, 90, 0.08), transparent 17rem),
		radial-gradient(circle at 68% 76%, rgba(58, 15, 22, 0.16), transparent 18rem);
	pointer-events: none;
	transition: filter 220ms ease, opacity 220ms ease;
}

.glance-panel:hover::before,
.glance-panel:focus-within::before {
	background:
		linear-gradient(rgba(8, 7, 6, 0.42), rgba(8, 7, 6, 0.5)),
		url("assets/10.png") center bottom 18px / min(92%, 540px) auto no-repeat,
		radial-gradient(circle at 50% 24%, rgba(199, 161, 90, 0.12), transparent 17rem),
		radial-gradient(circle at 68% 76%, rgba(58, 15, 22, 0.18), transparent 18rem);
	filter: brightness(1.18) saturate(1.05);
}

.glance-watermark {
	position: absolute;
	right: -6%;
	top: 2%;
	width: clamp(10rem, 20vw, 17rem);
	height: clamp(10rem, 20vw, 17rem);
	opacity: 0.045;
	pointer-events: none;
}

.glance-watermark img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.glance-heading {
	position: relative;
	z-index: 1;
	margin-bottom: 26px;
}

.glance-heading .eyebrow {
	margin-bottom: 10px;
}

.glance-heading h3 {
	max-width: 22rem;
	margin: 0;
	color: var(--color-ivory);
	font-family: var(--font-serif);
	font-size: clamp(1.32rem, 2vw, 1.68rem);
	font-weight: 500;
	line-height: 1.22;
}

.glance-cards {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.glance-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 142px;
	padding: 22px 22px 24px;
	border: 1px solid rgba(199, 161, 90, 0.18);
	border-radius: 8px;
	background: rgba(8, 7, 6, 0.68);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
	text-align: center;
	transition: transform 200ms ease, border-color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}

.glance-card:hover,
.glance-card:focus-within {
	border-color: rgba(199, 161, 90, 0.45);
	background: rgba(199, 161, 90, 0.045);
	box-shadow: 0 24px 56px rgba(0, 0, 0, 0.42);
	transform: translateY(-3px);
}

.glance-panel:hover .glance-card,
.glance-panel:focus-within .glance-card {
	border-color: rgba(199, 161, 90, 0.32);
	background: rgba(8, 7, 6, 0.44);
	box-shadow: 0 18px 54px rgba(0, 0, 0, 0.32), 0 0 22px rgba(199, 161, 90, 0.08);
}

.glance-panel:hover .glance-card:hover,
.glance-panel:focus-within .glance-card:focus-within {
	border-color: rgba(199, 161, 90, 0.62);
	background: rgba(199, 161, 90, 0.08);
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.38), 0 0 30px rgba(199, 161, 90, 0.16);
}

.glance-card-goal {
	grid-column: 1 / -1;
	width: min(82%, 360px);
	margin: 0 auto;
	text-align: center;
}

.glance-icon {
	display: inline-grid;
	place-items: center;
	width: 32px;
	height: 32px;
	margin-bottom: 16px;
	color: var(--color-gold);
	font-family: Georgia, serif;
	font-size: 1.55rem;
	line-height: 1;
	text-shadow: 0 0 16px rgba(199, 161, 90, 0.1);
	transition: color 200ms ease, text-shadow 200ms ease;
}

.glance-icon-img {
	display: block;
	width: 34px;
	height: 34px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 16px;
	object-fit: contain;
	object-position: center;
	filter: drop-shadow(0 0 12px rgba(199, 161, 90, 0.12));
	transition: filter 200ms ease, transform 200ms ease;
}

.glance-card:hover .glance-icon,
.glance-card:focus-within .glance-icon {
	color: var(--color-gold-bright);
	text-shadow: 0 0 22px rgba(224, 194, 122, 0.26);
}

.glance-card:hover .glance-icon-img,
.glance-card:focus-within .glance-icon-img {
	filter: drop-shadow(0 0 20px rgba(224, 194, 122, 0.28));
	transform: translateY(-1px);
}

.glance-hourglass {
	position: relative;
	border-top: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
}

.glance-hourglass::before {
	position: absolute;
	inset: 5px 8px;
	content: "";
	border: 1px solid currentColor;
	clip-path: polygon(0 0, 100% 0, 56% 50%, 100% 100%, 0 100%, 44% 50%);
	opacity: 0.9;
}

.glance-card h4 {
	margin: 0 0 8px;
	color: var(--color-gold);
	font-family: var(--font-body);
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.17em;
	text-transform: uppercase;
}

.glance-card p {
	margin: 0;
	color: var(--color-ivory);
	font-family: var(--font-serif);
	font-size: 1.12rem;
	line-height: 1.32;
}

.table-diagram {
	display: none;
}

.table-ring {
	position: absolute;
	left: 50%;
	top: 46%;
	width: 210px;
	height: 150px;
	border: 1px solid rgba(232, 220, 194, 0.35);
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.table-ring::before,
.table-ring::after {
	position: absolute;
	content: "";
	border: 1px solid rgba(199, 161, 90, 0.16);
}

.table-ring::before {
	left: 24px;
	top: 20px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
}

.table-ring::after {
	right: 24px;
	top: 20px;
	width: 42px;
	height: 42px;
	border-radius: 5px;
}

.pool-label,
.row-label {
	position: absolute;
	color: #827761;
	font-family: var(--font-body);
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.pool-label {
	left: 50%;
	top: 24px;
	transform: translateX(-50%);
}

.row-label {
	left: 50%;
	bottom: 78px;
	transform: translateX(-50%);
}

.pool-dice {
	position: absolute;
	left: 50%;
	top: 44%;
	width: 148px;
	height: 92px;
	transform: translate(-50%, -50%);
}

.diagram-die {
	position: absolute;
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border: 1px solid rgba(232, 220, 194, 0.35);
	border-radius: 6px;
	color: var(--color-gold);
	font-family: Georgia, serif;
	font-size: 1.05rem;
	background: rgba(8, 7, 6, 0.82);
}

.diagram-crown {
	left: 55px;
	top: 8px;
}

.diagram-sun {
	left: 16px;
	top: 34px;
	color: var(--color-parchment);
}

.diagram-moon {
	right: 14px;
	top: 38px;
	color: var(--color-parchment);
}

.diagram-star {
	left: 64px;
	bottom: 3px;
}

.diagram-dot {
	right: 42px;
	top: 4px;
	color: #827761;
	font-size: 0.72rem;
	letter-spacing: 0.02em;
}

.assembly-row-diagram {
	position: absolute;
	left: 50%;
	bottom: 24px;
	display: grid;
	grid-template-columns: repeat(4, 34px);
	gap: 8px;
	transform: translateX(-50%);
}

.assembly-row-diagram span {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(232, 220, 194, 0.35);
	border-radius: 6px;
	color: var(--color-gold);
	font-family: Georgia, serif;
	font-size: 1.1rem;
	background: rgba(8, 7, 6, 0.72);
}

.assembly-row-diagram span:empty {
	background: rgba(232, 220, 194, 0.018);
}

.diagram-hourglass {
	position: absolute;
	right: 28px;
	bottom: 38px;
	width: 24px;
	height: 44px;
	border-top: 2px solid rgba(199, 161, 90, 0.8);
	border-bottom: 2px solid rgba(199, 161, 90, 0.8);
}

.diagram-hourglass::before {
	position: absolute;
	inset: 5px 4px;
	content: "";
	border: 1px solid rgba(199, 161, 90, 0.58);
	clip-path: polygon(0 0, 100% 0, 56% 50%, 100% 100%, 0 100%, 44% 50%);
}

body.reveal-ready .game-section .eyebrow,
body.reveal-ready .game-section h2,
body.reveal-ready .game-prose > p,
body.reveal-ready .game-truths,
body.reveal-ready .game-closing,
body.reveal-ready .glance-panel,
body.reveal-ready .glance-card,
body.reveal-ready .table-diagram {
	opacity: 0;
}

body.reveal-ready .game-section .eyebrow,
body.reveal-ready .game-section h2,
body.reveal-ready .game-prose > p,
body.reveal-ready .game-truths,
body.reveal-ready .game-closing,
body.reveal-ready .glance-card,
body.reveal-ready .table-diagram {
	transform: translateY(14px);
}

body.reveal-ready .glance-panel {
	transform: translateX(18px);
}

body.reveal-ready .game-truths::before {
	transform: scaleY(0);
}

body.reveal-ready .game-section.is-visible .eyebrow,
body.reveal-ready .game-section.is-visible h2,
body.reveal-ready .game-section.is-visible .game-prose > p,
body.reveal-ready .game-section.is-visible .game-truths,
body.reveal-ready .game-section.is-visible .game-closing,
body.reveal-ready .game-section.is-visible .glance-panel,
body.reveal-ready .game-section.is-visible .glance-card,
body.reveal-ready .game-section.is-visible .table-diagram {
	opacity: 1;
	transform: translate(0, 0);
	transition: opacity 700ms ease, transform 860ms cubic-bezier(0.19, 1, 0.22, 1);
}

body.reveal-ready .game-section.is-visible .game-truths::before {
	transform: scaleY(1);
	transition: transform 760ms ease 700ms;
}

body.reveal-ready .game-section.is-visible .eyebrow {
	transition-delay: 80ms;
}

body.reveal-ready .game-section.is-visible h2 {
	transition-delay: 170ms;
}

body.reveal-ready .game-section.is-visible .game-prose > p:nth-child(1) {
	transition-delay: 280ms;
}

body.reveal-ready .game-section.is-visible .game-prose > p:nth-child(2) {
	transition-delay: 370ms;
}

body.reveal-ready .game-section.is-visible .game-prose > p:nth-child(3) {
	transition-delay: 460ms;
}

body.reveal-ready .game-section.is-visible .game-prose > p:nth-child(4) {
	transition-delay: 550ms;
}

body.reveal-ready .game-section.is-visible .game-prose > p:nth-child(5),
body.reveal-ready .game-section.is-visible .game-truths {
	transition-delay: 640ms;
}

body.reveal-ready .game-section.is-visible .game-prose > p:nth-child(7),
body.reveal-ready .game-section.is-visible .game-closing {
	transition-delay: 760ms;
}

body.reveal-ready .game-section.is-visible .glance-panel {
	transition-delay: 260ms;
}

body.reveal-ready .game-section.is-visible .glance-card:nth-child(1) {
	transition-delay: 460ms;
}

body.reveal-ready .game-section.is-visible .glance-card:nth-child(2) {
	transition-delay: 550ms;
}

body.reveal-ready .game-section.is-visible .glance-card:nth-child(3) {
	transition-delay: 640ms;
}

body.reveal-ready .game-section.is-visible .glance-card:nth-child(4) {
	transition-delay: 730ms;
}

body.reveal-ready .game-section.is-visible .glance-card:nth-child(5) {
	transition-delay: 820ms;
}

body.reveal-ready .game-section.is-visible .table-diagram {
	transition-delay: 940ms;
}

body.reveal-ready .game-section.is-visible .glance-card {
	transition: opacity 700ms ease, transform 860ms cubic-bezier(0.19, 1, 0.22, 1), border-color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}

body.reveal-ready .game-section.is-visible .glance-card:hover,
body.reveal-ready .game-section.is-visible .glance-card:focus-within {
	transform: translateY(-3px);
}

/* Section 4 brings the player down to table level: public information, social pressure, and the timer. */
.experience-section {
	position: relative;
	min-height: 100vh;
	padding: 120px 24px;
	overflow: hidden;
	background:
		radial-gradient(circle at 26% 52%, rgba(74, 23, 19, 0.22), transparent 31rem),
		radial-gradient(circle at 68% 24%, rgba(199, 161, 90, 0.07), transparent 26rem),
		linear-gradient(135deg, #100809 0%, #070606 47%, #160d08 100%);
	isolation: isolate;
}

.experience-section::before {
	position: absolute;
	inset: 0;
	z-index: -2;
	content: "";
	background:
		radial-gradient(circle at 80% 18%, rgba(199, 161, 90, 0.035), transparent 2px),
		radial-gradient(circle at 20% 76%, transparent 18px, rgba(199, 161, 90, 0.032) 19px, transparent 20px),
		linear-gradient(24deg, transparent 41%, rgba(199, 161, 90, 0.026) 41.2%, transparent 41.5%),
		linear-gradient(116deg, transparent 62%, rgba(232, 220, 194, 0.022) 62.2%, transparent 62.55%);
	background-size: 220px 220px, 260px 260px, 190px 190px, 240px 240px;
	opacity: 0.8;
}

.experience-section::after {
	position: absolute;
	right: 6%;
	top: 9%;
	z-index: -1;
	width: clamp(13rem, 26vw, 26rem);
	height: clamp(13rem, 26vw, 26rem);
	content: "";
	background: url("assets/icon-moon-gold.png") center / contain no-repeat;
	opacity: 0.03;
	transform: rotate(14deg);
}

.experience-content {
	display: block;
	width: min(920px, 100%);
	margin: 0 auto;
}

.experience-visual {
	position: relative;
	min-height: clamp(360px, 48vw, 560px);
	margin: 38px auto 34px;
	border: 1px solid rgba(199, 161, 90, 0.22);
	border-radius: 14px;
	background:
		radial-gradient(circle at 32% 32%, rgba(199, 161, 90, 0.18), transparent 18rem),
		linear-gradient(145deg, rgba(55, 25, 13, 0.82), rgba(7, 5, 4, 0.94));
	box-shadow: 0 30px 100px rgba(0, 0, 0, 0.65), inset 0 0 88px rgba(0, 0, 0, 0.52);
	overflow: hidden;
	transform: translateY(var(--experience-parallax, 0));
	transition: transform 220ms ease-out;
}

.experience-placeholder-image {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.experience-visual::before {
	position: absolute;
	inset: 0;
	z-index: 4;
	content: "";
	background:
		radial-gradient(ellipse at center, transparent 42%, rgba(0, 0, 0, 0.66) 100%),
		linear-gradient(135deg, rgba(255, 224, 160, 0.12), transparent 34%);
	pointer-events: none;
}

.experience-visual::after {
	position: absolute;
	inset: -20%;
	z-index: 5;
	content: "";
	background-image:
		radial-gradient(circle, rgba(232, 220, 194, 0.18) 0 1px, transparent 1.5px),
		radial-gradient(circle, rgba(199, 161, 90, 0.13) 0 1px, transparent 1.5px);
	background-position: 2rem 4rem, 11rem 9rem;
	background-size: 15rem 15rem, 21rem 21rem;
	opacity: 0.17;
	pointer-events: none;
	animation: dust-float 18s ease-in-out infinite alternate;
}

.experience-smoke {
	position: absolute;
	inset: 0;
	z-index: 3;
	background:
		radial-gradient(ellipse at 22% 14%, rgba(232, 220, 194, 0.08), transparent 18rem),
		radial-gradient(ellipse at 62% 34%, rgba(255, 255, 255, 0.04), transparent 20rem);
	filter: blur(10px);
	opacity: 0.55;
	animation: smoke-drift 24s ease-in-out infinite alternate;
}

.experience-table {
	position: absolute;
	inset: 9% 5% 7%;
	z-index: 2;
	border-radius: 50%;
	background:
		radial-gradient(ellipse at 32% 36%, rgba(242, 183, 91, 0.18), transparent 26%),
		radial-gradient(ellipse at 56% 68%, rgba(68, 30, 16, 0.75), transparent 54%),
		linear-gradient(118deg, #462416, #160b08 68%, #080504);
	box-shadow: inset 0 0 110px rgba(0, 0, 0, 0.62), 0 26px 60px rgba(0, 0, 0, 0.45);
	transform: rotate(-5deg);
}

.experience-pool {
	position: absolute;
	left: 43%;
	top: 46%;
	width: 270px;
	height: 220px;
	transform: translate(-50%, -50%) rotate(5deg);
}

.experience-die,
.experience-row-die,
.experience-row-space {
	position: absolute;
	display: grid;
	place-items: center;
	width: 60px;
	height: 60px;
	border: 1px solid rgba(83, 43, 23, 0.88);
	border-radius: 12px;
	color: #21110d;
	background:
		radial-gradient(circle at 28% 24%, rgba(255, 238, 190, 0.76), transparent 34%),
		linear-gradient(145deg, #c89251, #7b421f 64%, #3b1d10);
	box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.11), inset -8px -12px 22px rgba(0, 0, 0, 0.35), 0 16px 23px rgba(0, 0, 0, 0.45);
	font-family: Georgia, serif;
	font-size: 1.8rem;
	line-height: 1;
}

.experience-die small {
	position: absolute;
	right: 6px;
	bottom: 5px;
	font-size: 0.58rem;
	letter-spacing: 0.02em;
}

.pool-crown {
	left: 96px;
	top: 68px;
	width: 76px;
	height: 76px;
	font-size: 2.4rem;
	transform: rotate(-11deg);
	z-index: 3;
}

.pool-moon {
	left: 28px;
	top: 104px;
	transform: rotate(18deg) scale(0.88);
}

.pool-star {
	left: 168px;
	top: 112px;
	transform: rotate(-18deg) scale(0.92);
}

.pool-sun {
	left: 138px;
	top: 26px;
	transform: rotate(22deg) scale(0.8);
	opacity: 0.86;
}

.pool-dot {
	left: 70px;
	top: 158px;
	transform: rotate(10deg) scale(0.78);
	font-size: 0.92rem;
}

.pool-hidden {
	left: 208px;
	top: 50px;
	transform: rotate(31deg) scale(0.7);
	opacity: 0.55;
	filter: blur(0.6px);
}

.pool-curve {
	left: 18px;
	top: 36px;
	transform: rotate(-24deg) scale(0.7);
	opacity: 0.58;
	filter: blur(0.6px);
}

.pool-small {
	left: 216px;
	top: 160px;
	transform: rotate(-9deg) scale(0.66);
	opacity: 0.42;
	filter: blur(1px);
}

.experience-row {
	position: absolute;
	left: 15%;
	bottom: 18%;
	width: 292px;
	height: 78px;
	transform: rotate(7deg);
}

.experience-row-die,
.experience-row-space {
	position: relative;
	display: inline-grid;
	margin-right: 10px;
}

.experience-row-die:nth-child(1) {
	transform: rotate(-5deg);
}

.experience-row-die:nth-child(2) {
	transform: rotate(4deg);
}

.experience-row-die:nth-child(3) {
	transform: rotate(-2deg);
}

.experience-row-space {
	border-color: rgba(232, 220, 194, 0.2);
	background: rgba(0, 0, 0, 0.12);
	box-shadow: inset 0 0 18px rgba(199, 161, 90, 0.06);
}

.experience-hand {
	position: absolute;
	right: 8%;
	top: 23%;
	width: 126px;
	height: 72px;
	border-radius: 70% 30% 38% 62%;
	background: linear-gradient(135deg, rgba(196, 136, 92, 0.32), rgba(72, 33, 23, 0.12));
	box-shadow: 0 18px 28px rgba(0, 0, 0, 0.28);
	transform: rotate(-17deg);
	opacity: 0.7;
	filter: blur(0.2px);
}

.experience-hand::before {
	position: absolute;
	left: -46px;
	top: 15px;
	width: 72px;
	height: 18px;
	content: "";
	border-radius: 999px;
	background: rgba(196, 136, 92, 0.24);
	transform: rotate(7deg);
}

.experience-hourglass {
	position: absolute;
	right: 14%;
	bottom: 18%;
	width: 64px;
	height: 126px;
	border-top: 5px solid rgba(199, 161, 90, 0.85);
	border-bottom: 5px solid rgba(199, 161, 90, 0.85);
	filter: drop-shadow(0 0 18px rgba(199, 161, 90, 0.12));
	animation: hourglass-pulse 6s ease-in-out infinite;
}

.experience-hourglass::before {
	position: absolute;
	inset: 10px 11px;
	content: "";
	border: 1px solid rgba(232, 220, 194, 0.28);
	clip-path: polygon(0 0, 100% 0, 57% 50%, 100% 100%, 0 100%, 43% 50%);
	background: linear-gradient(90deg, rgba(232, 220, 194, 0.14), rgba(255, 255, 255, 0.03), rgba(232, 220, 194, 0.15));
}

.experience-hourglass::after {
	position: absolute;
	left: 50%;
	top: 46px;
	width: 2px;
	height: 34px;
	content: "";
	background: rgba(224, 194, 122, 0.86);
	transform: translateX(-50%);
}

.experience-hourglass span {
	position: absolute;
	left: 19px;
	right: 19px;
	bottom: 16px;
	height: 24px;
	background: rgba(224, 194, 122, 0.62);
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.experience-case {
	position: absolute;
	left: 8%;
	top: 10%;
	width: 190px;
	height: 86px;
	border: 1px solid rgba(199, 161, 90, 0.18);
	border-radius: 12px;
	background:
		linear-gradient(118deg, rgba(97, 48, 30, 0.52), rgba(20, 10, 8, 0.86)),
		repeating-linear-gradient(35deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 5px);
	transform: rotate(9deg);
	opacity: 0.48;
	filter: blur(0.8px);
}

.experience-label {
	position: absolute;
	z-index: 7;
	padding: 6px 9px;
	border: 1px solid rgba(199, 161, 90, 0.22);
	border-radius: 4px;
	color: var(--color-gold);
	background: rgba(7, 6, 6, 0.7);
	font-family: var(--font-body);
	font-size: 0.64rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity 180ms ease, transform 180ms ease;
}

.experience-visual:hover .experience-label,
.experience-visual:focus-within .experience-label {
	opacity: 1;
	transform: translateY(0);
}

.label-pool {
	left: 34%;
	top: 32%;
}

.label-row {
	left: 14%;
	bottom: 31%;
}

.label-timer {
	right: 11%;
	bottom: 39%;
}

.label-crown {
	left: 41%;
	top: 41%;
}

.experience-copy {
	position: relative;
	max-width: 100%;
}

.experience-copy::before {
	position: absolute;
	right: 8%;
	top: -8%;
	z-index: -1;
	width: clamp(11rem, 18vw, 18rem);
	height: clamp(11rem, 18vw, 18rem);
	content: "";
	background: url("assets/icon-moon-gold.png") center / contain no-repeat;
	opacity: 0.03;
	transform: rotate(-12deg);
}

.experience-copy h2 {
	max-width: 10ch;
	color: var(--color-ivory);
	font-size: clamp(3.1rem, 5.8vw, 4.25rem);
	letter-spacing: 0.04em;
	line-height: 1.05;
	text-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}

.experience-prose {
	margin-top: 30px;
	color: var(--color-parchment);
	font-family: var(--font-serif);
	font-size: clamp(1.05rem, 1.32vw, 1.18rem);
	line-height: 1.75;
}

.experience-prose p {
	margin: 0 0 17px;
}

.experience-poem {
	margin: 28px 0;
	color: var(--color-ivory);
	font-family: var(--font-serif);
	font-size: clamp(1.17rem, 1.6vw, 1.38rem);
	font-style: italic;
	line-height: 1.8;
}

.experience-poem p {
	margin: 0;
}

.experience-now {
	margin-bottom: 8px;
}

.experience-quote {
	position: relative;
	margin: 36px 0;
	padding: 22px 26px;
	border: 1px solid rgba(199, 161, 90, 0.16);
	border-left: 2px solid var(--color-gold);
	border-radius: 6px;
	background: rgba(199, 161, 90, 0.055);
	transition: border-color 200ms ease, background-color 200ms ease;
	text-align: center;
}

.experience-quote:hover {
	border-color: rgba(199, 161, 90, 0.28);
	background: rgba(199, 161, 90, 0.07);
}

.experience-quote span {
	display: block;
	margin-bottom: 8px;
	color: rgba(199, 161, 90, 0.4);
	font-family: Georgia, serif;
	font-size: 1.35rem;
	line-height: 1;
	transition: color 200ms ease;
}

.experience-quote:hover span {
	color: rgba(199, 161, 90, 0.62);
}

.experience-quote p {
	margin: 0;
	color: var(--color-ivory);
	font-family: var(--font-serif);
	font-size: clamp(1.32rem, 2vw, 1.62rem);
	font-style: italic;
	line-height: 1.45;
}

.experience-cards {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.experience-cards::before {
	position: absolute;
	inset: -12% 8% 8%;
	z-index: -1;
	content: "";
	border: 1px solid rgba(199, 161, 90, 0.05);
	border-radius: 50%;
	transform: rotate(-9deg);
}

.experience-card {
	padding: 22px;
	border: 1px solid rgba(199, 161, 90, 0.16);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.025);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
	transition: transform 200ms ease, border-color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}

.experience-card:hover,
.experience-card:focus-within {
	border-color: rgba(199, 161, 90, 0.42);
	background: rgba(199, 161, 90, 0.04);
	box-shadow: 0 24px 56px rgba(0, 0, 0, 0.42);
	transform: translateY(-3px);
}

.experience-card-icon {
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	margin-bottom: 16px;
	color: var(--color-gold);
	font-family: Georgia, serif;
	font-size: 1.6rem;
	line-height: 1;
	opacity: 0.7;
	transition: opacity 200ms ease, text-shadow 200ms ease, color 200ms ease;
}

.experience-card:hover .experience-card-icon,
.experience-card:focus-within .experience-card-icon {
	color: var(--color-gold-bright);
	opacity: 1;
	text-shadow: 0 0 22px rgba(224, 194, 122, 0.24);
}

.experience-card-hourglass {
	position: relative;
	border-top: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
}

.experience-card-hourglass::before {
	position: absolute;
	inset: 5px 9px;
	content: "";
	border: 1px solid currentColor;
	clip-path: polygon(0 0, 100% 0, 56% 50%, 100% 100%, 0 100%, 44% 50%);
}

.experience-card h3 {
	margin: 0 0 10px;
	color: var(--color-gold);
	font-family: var(--font-body);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.experience-card p {
	margin: 0;
	color: var(--color-parchment);
	font-family: var(--font-serif);
	font-size: 1rem;
	line-height: 1.6;
}

.experience-closing {
	margin: 34px 0 0;
	color: var(--color-gold);
	font-family: var(--font-serif);
	font-size: 1.18rem;
	font-style: italic;
	line-height: 1.45;
}

body.reveal-ready .experience-visual,
body.reveal-ready .experience-section .eyebrow,
body.reveal-ready .experience-section h2,
body.reveal-ready .experience-prose > p,
body.reveal-ready .experience-poem,
body.reveal-ready .experience-quote,
body.reveal-ready .experience-card,
body.reveal-ready .experience-closing {
	opacity: 0;
}

body.reveal-ready .experience-visual {
	filter: brightness(0.45);
	transform: translateY(calc(var(--experience-parallax, 0px) + 14px));
}

body.reveal-ready .experience-section .eyebrow,
body.reveal-ready .experience-section h2,
body.reveal-ready .experience-prose > p,
body.reveal-ready .experience-poem,
body.reveal-ready .experience-quote,
body.reveal-ready .experience-card,
body.reveal-ready .experience-closing {
	transform: translateY(14px);
}

body.reveal-ready .experience-quote {
	clip-path: inset(0 100% 0 0);
}

body.reveal-ready .experience-section.is-visible .experience-visual,
body.reveal-ready .experience-section.is-visible .eyebrow,
body.reveal-ready .experience-section.is-visible h2,
body.reveal-ready .experience-section.is-visible .experience-prose > p,
body.reveal-ready .experience-section.is-visible .experience-poem,
body.reveal-ready .experience-section.is-visible .experience-quote,
body.reveal-ready .experience-section.is-visible .experience-card,
body.reveal-ready .experience-section.is-visible .experience-closing {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 760ms ease, transform 920ms cubic-bezier(0.19, 1, 0.22, 1), filter 900ms ease, clip-path 780ms ease;
}

body.reveal-ready .experience-section.is-visible .experience-visual {
	transform: translateY(var(--experience-parallax, 0px));
	filter: brightness(1);
	transition-delay: 80ms;
}

body.reveal-ready .experience-section.is-visible .eyebrow {
	transition-delay: 210ms;
}

body.reveal-ready .experience-section.is-visible h2 {
	transition-delay: 300ms;
}

body.reveal-ready .experience-section.is-visible .experience-prose > p:nth-child(1) {
	transition-delay: 410ms;
}

body.reveal-ready .experience-section.is-visible .experience-poem:nth-child(2) {
	transition-delay: 500ms;
}

body.reveal-ready .experience-section.is-visible .experience-prose > p:nth-child(3) {
	transition-delay: 590ms;
}

body.reveal-ready .experience-section.is-visible .experience-prose > p:nth-child(4),
body.reveal-ready .experience-section.is-visible .experience-prose > p:nth-child(5) {
	transition-delay: 680ms;
}

body.reveal-ready .experience-section.is-visible .experience-prose > p:nth-child(6),
body.reveal-ready .experience-section.is-visible .experience-prose > p:nth-child(7) {
	transition-delay: 770ms;
}

body.reveal-ready .experience-section.is-visible .experience-poem:nth-child(8) {
	transition-delay: 860ms;
}

body.reveal-ready .experience-section.is-visible .experience-prose > p:nth-child(9),
body.reveal-ready .experience-section.is-visible .experience-prose > p:nth-child(10),
body.reveal-ready .experience-section.is-visible .experience-now {
	transition-delay: 950ms;
}

body.reveal-ready .experience-section.is-visible .experience-quote {
	clip-path: inset(0 0 0 0);
	transition-delay: 1040ms;
}

body.reveal-ready .experience-section.is-visible .experience-card:nth-child(1) {
	transition-delay: 1130ms;
}

body.reveal-ready .experience-section.is-visible .experience-card:nth-child(2) {
	transition-delay: 1220ms;
}

body.reveal-ready .experience-section.is-visible .experience-card:nth-child(3) {
	transition-delay: 1310ms;
}

body.reveal-ready .experience-section.is-visible .experience-card:nth-child(4) {
	transition-delay: 1400ms;
}

body.reveal-ready .experience-section.is-visible .experience-closing {
	transition-delay: 1490ms;
}

body.reveal-ready .experience-section.is-visible .experience-card {
	transition: opacity 760ms ease, transform 920ms cubic-bezier(0.19, 1, 0.22, 1), border-color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}

body.reveal-ready .experience-section.is-visible .experience-card:hover,
body.reveal-ready .experience-section.is-visible .experience-card:focus-within {
	transform: translateY(-3px);
}

/* Section 5 teaches the scoring patterns, so the dice diagrams favor precision over atmosphere. */
.signs-section {
	position: relative;
	padding: 120px 24px 92px;
	overflow: hidden;
	background:
		radial-gradient(circle at 50% 13%, rgba(199, 161, 90, 0.08), transparent 28rem),
		radial-gradient(circle at 50% 58%, rgba(27, 34, 56, 0.14), transparent 36rem),
		linear-gradient(180deg, #050507 0%, #0b090d 48%, #080604 100%);
	isolation: isolate;
}

.signs-section::before {
	position: absolute;
	inset: 0;
	z-index: -2;
	content: "";
	background:
		radial-gradient(circle, rgba(232, 220, 194, 0.22) 0 1px, transparent 1.5px),
		radial-gradient(circle, rgba(199, 161, 90, 0.16) 0 1px, transparent 1.5px),
		linear-gradient(28deg, transparent 34%, rgba(199, 161, 90, 0.06) 34.15%, transparent 34.3%),
		linear-gradient(142deg, transparent 58%, rgba(232, 220, 194, 0.04) 58.15%, transparent 58.3%);
	background-position: 2rem 4rem, 9rem 6rem, 0 0, 4rem 2rem;
	background-size: 18rem 18rem, 25rem 25rem, 22rem 22rem, 28rem 28rem;
	opacity: 0.35;
}

.signs-section::after {
	position: absolute;
	left: 50%;
	top: 34%;
	z-index: -1;
	width: min(1080px, 90vw);
	height: 420px;
	content: "";
	border-radius: 50%;
	background:
		radial-gradient(ellipse at center, rgba(10, 8, 7, 0.38), transparent 66%),
		linear-gradient(90deg, transparent, rgba(199, 161, 90, 0.045), transparent);
	filter: blur(2px);
	transform: translateX(-50%) rotate(-4deg);
}

.signs-placeholder-image {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.signs-header {
	position: relative;
	z-index: 1;
	width: min(760px, 100%);
	margin: 0 auto 62px;
	text-align: center;
}

.signs-header .eyebrow {
	text-align: center;
}

.signs-header h2 {
	color: var(--color-ivory);
	font-size: clamp(3.25rem, 6vw, 4.5rem);
	letter-spacing: 0.05em;
	line-height: 1.05;
	text-align: center;
	text-shadow: 0 20px 52px rgba(0, 0, 0, 0.5);
}

.signs-intro {
	margin-top: 30px;
	color: var(--color-parchment);
	font-family: var(--font-serif);
	font-size: clamp(1.05rem, 1.32vw, 1.18rem);
	line-height: 1.75;
}

.signs-intro p {
	margin: 0 0 16px;
}

.signs-poem {
	margin: 28px 0 0;
	color: var(--color-ivory);
	font-family: var(--font-serif);
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	font-style: italic;
	line-height: 1.8;
}

.signs-poem p {
	margin: 0;
}

.sign-cards {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(18px, 2vw, 26px);
	width: min(var(--site-max), 100%);
	margin: 0 auto;
}

.sign-card {
	position: relative;
	min-height: 520px;
	padding: clamp(28px, 3vw, 34px);
	border: 1px solid rgba(199, 161, 90, 0.24);
	border-radius: 12px;
	background:
		var(--sign-card-glow),
		linear-gradient(180deg, rgba(20, 15, 12, 0.96), rgba(8, 7, 7, 0.98));
	box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
	overflow: hidden;
	transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.sign-card::before {
	position: absolute;
	inset: 0;
	content: "";
	background:
		radial-gradient(circle at 50% 0%, rgba(199, 161, 90, 0.09), transparent 12rem),
		linear-gradient(135deg, rgba(232, 220, 194, 0.025), transparent 32%);
	pointer-events: none;
}

.sign-card:hover,
.sign-card:focus-within {
	border-color: rgba(199, 161, 90, 0.58);
	box-shadow: 0 34px 100px rgba(0, 0, 0, 0.62), 0 0 34px rgba(199, 161, 90, 0.08);
	transform: translateY(-5px);
}

.sign-card-omen {
	--sign-card-glow: radial-gradient(circle at 50% 28%, rgba(33, 17, 42, 0.22), transparent 18rem);
}

.sign-card-seal {
	--sign-card-glow: radial-gradient(circle at 50% 28%, rgba(52, 16, 24, 0.22), transparent 18rem);
}

.sign-card-eclipse {
	--sign-card-glow:
		radial-gradient(circle at 36% 24%, rgba(45, 36, 16, 0.16), transparent 16rem),
		radial-gradient(circle at 70% 34%, rgba(21, 29, 52, 0.16), transparent 16rem);
}

.sign-card-symbol {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	margin: 0 auto 18px;
	border: 1px solid rgba(199, 161, 90, 0.26);
	border-radius: 50%;
	color: var(--color-gold);
	font-family: Georgia, serif;
	font-size: 1.9rem;
	line-height: 1;
	background: rgba(199, 161, 90, 0.035);
}

.sign-card h3 {
	position: relative;
	z-index: 1;
	margin: 0;
	color: var(--color-ivory);
	font-family: var(--font-title);
	font-size: clamp(1.9rem, 3vw, 2.38rem);
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1.08;
	text-align: center;
	text-transform: uppercase;
}

.sign-poetic {
	position: relative;
	z-index: 1;
	margin: 8px 0 28px;
	color: var(--color-gold);
	font-family: var(--font-serif);
	font-size: 1.1rem;
	font-style: italic;
	line-height: 1.35;
	text-align: center;
}

.dice-formula {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	gap: clamp(8px, 1vw, 12px);
	margin: 0 0 14px;
	border-radius: 18px;
	overflow: hidden;
}

.dice-formula::after {
	position: absolute;
	inset: -1px;
	content: "";
	background:
		linear-gradient(90deg, rgba(12, 9, 8, 0.92), transparent 15%, transparent 85%, rgba(12, 9, 8, 0.92)),
		linear-gradient(180deg, rgba(12, 9, 8, 0.96), transparent 18%, transparent 82%, rgba(12, 9, 8, 0.96));
	pointer-events: none;
}

.formula-caption {
	position: relative;
	z-index: 1;
	margin: 0 0 20px;
	color: #d8c89f;
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.4;
	text-align: center;
	text-transform: uppercase;
}

.condition-list {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 8px;
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
	color: var(--color-parchment);
	font-family: var(--font-body);
	font-size: 0.84rem;
	line-height: 1.45;
}

.condition-list li {
	position: relative;
	padding-left: 24px;
}

.condition-list li::before {
	position: absolute;
	left: 0;
	top: 0;
	color: var(--color-gold);
	content: "✓";
}

.sign-rules {
	position: relative;
	z-index: 1;
	color: var(--color-parchment);
	font-family: var(--font-serif);
	font-size: 1rem;
	line-height: 1.65;
}

.sign-rules p {
	margin: 0 0 12px;
}

.sign-rules strong {
	color: var(--color-ivory);
	font-weight: 500;
}

.score-box {
	position: relative;
	z-index: 1;
	margin: 18px 0 0;
	padding: 14px 15px;
	border: 1px solid rgba(199, 161, 90, 0.18);
	border-radius: 8px;
	color: #d8c89f;
	background: rgba(199, 161, 90, 0.06);
	font-family: var(--font-serif);
	font-size: 0.96rem;
	line-height: 1.45;
}

.score-box p {
	margin: 0;
}

.sign-flavor {
	position: relative;
	z-index: 1;
	margin: 22px 0 0;
	color: #958a75;
	font-family: var(--font-serif);
	font-size: 0.96rem;
	font-style: italic;
	line-height: 1.65;
	transition: color 180ms ease;
}

.sign-card:hover .sign-flavor,
.sign-card:focus-within .sign-flavor {
	color: #a99f89;
}

.eclipse-toggle {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	gap: 8px;
	margin: 0 0 18px;
}

.eclipse-toggle button {
	padding: 7px 10px;
	border: 1px solid rgba(199, 161, 90, 0.24);
	border-radius: 999px;
	color: rgba(232, 220, 194, 0.72);
	background: rgba(255, 255, 255, 0.02);
	font-family: var(--font-body);
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.eclipse-toggle button:hover,
.eclipse-toggle button:focus-visible,
.eclipse-toggle button.is-active {
	border-color: rgba(199, 161, 90, 0.62);
	color: var(--color-gold);
	background: rgba(199, 161, 90, 0.08);
}

.eclipse-formula {
	display: none;
}

.eclipse-formula.is-active {
	display: flex;
}

.signs-reminder {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 16px;
	align-items: center;
	width: min(980px, 100%);
	margin: 48px auto 0;
	padding: 18px 24px;
	border: 1px solid rgba(199, 161, 90, 0.18);
	border-radius: 8px;
	color: var(--color-parchment);
	background: rgba(232, 220, 194, 0.035);
	font-family: var(--font-serif);
	font-size: 1.05rem;
	line-height: 1.55;
	text-align: center;
}

.signs-reminder span {
	color: var(--color-gold);
	font-family: Georgia, serif;
	font-size: 1.25rem;
}

.signs-reminder p {
	margin: 0;
}

.signs-closing {
	position: relative;
	z-index: 1;
	width: min(780px, 100%);
	margin: 42px auto 0;
	color: var(--color-parchment);
	font-family: var(--font-serif);
	font-size: 1.08rem;
	line-height: 1.72;
	text-align: center;
}

.signs-closing p {
	margin: 0 0 17px;
}

.signs-final-line {
	position: relative;
	z-index: 1;
	margin: 46px 0 0;
	color: var(--color-ivory);
	font-family: var(--font-serif);
	font-size: clamp(1.55rem, 3vw, 2.12rem);
	font-style: italic;
	line-height: 1.35;
	text-align: center;
}

.signs-final-line::after {
	display: block;
	width: 120px;
	height: 1px;
	margin: 20px auto 0;
	content: "";
	background: rgba(199, 161, 90, 0.45);
	transform-origin: center;
}

body.reveal-ready .signs-section .eyebrow,
body.reveal-ready .signs-section h2,
body.reveal-ready .signs-intro > p,
body.reveal-ready .signs-poem p,
body.reveal-ready .sign-card,
body.reveal-ready .signs-reminder,
body.reveal-ready .signs-closing,
body.reveal-ready .signs-final-line {
	opacity: 0;
}

body.reveal-ready .signs-section .eyebrow,
body.reveal-ready .signs-section h2,
body.reveal-ready .signs-intro > p,
body.reveal-ready .signs-poem p,
body.reveal-ready .sign-card,
body.reveal-ready .signs-reminder,
body.reveal-ready .signs-closing,
body.reveal-ready .signs-final-line {
	transform: translateY(16px);
}

body.reveal-ready .signs-final-line::after {
	transform: scaleX(0);
}

body.reveal-ready .signs-section.is-visible .eyebrow,
body.reveal-ready .signs-section.is-visible h2,
body.reveal-ready .signs-section.is-visible .signs-intro > p,
body.reveal-ready .signs-section.is-visible .signs-poem p,
body.reveal-ready .signs-section.is-visible .sign-card,
body.reveal-ready .signs-section.is-visible .signs-reminder,
body.reveal-ready .signs-section.is-visible .signs-closing,
body.reveal-ready .signs-section.is-visible .signs-final-line {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 760ms ease, transform 920ms cubic-bezier(0.19, 1, 0.22, 1);
}

body.reveal-ready .signs-section.is-visible .sign-card:hover,
body.reveal-ready .signs-section.is-visible .sign-card:focus-within {
	transform: translateY(-5px);
}

body.reveal-ready .signs-section.is-visible .sign-card {
	transition: opacity 760ms ease, transform 920ms cubic-bezier(0.19, 1, 0.22, 1), border-color 220ms ease, box-shadow 220ms ease;
}

body.reveal-ready .signs-section.is-visible .signs-final-line::after {
	transform: scaleX(1);
	transition: transform 760ms ease 1600ms;
}

body.reveal-ready .signs-section.is-visible .eyebrow {
	transition-delay: 80ms;
}

body.reveal-ready .signs-section.is-visible h2 {
	transition-delay: 180ms;
}

body.reveal-ready .signs-section.is-visible .signs-intro > p:nth-child(1) {
	transition-delay: 300ms;
}

body.reveal-ready .signs-section.is-visible .signs-intro > p:nth-child(2) {
	transition-delay: 380ms;
}

body.reveal-ready .signs-section.is-visible .signs-intro > p:nth-child(3) {
	transition-delay: 460ms;
}

body.reveal-ready .signs-section.is-visible .signs-intro > p:nth-child(4) {
	transition-delay: 540ms;
}

body.reveal-ready .signs-section.is-visible .signs-intro > p:nth-child(5) {
	transition-delay: 620ms;
}

body.reveal-ready .signs-section.is-visible .signs-intro > p:nth-child(6) {
	transition-delay: 700ms;
}

body.reveal-ready .signs-section.is-visible .signs-poem p:nth-child(1) {
	transition-delay: 790ms;
}

body.reveal-ready .signs-section.is-visible .signs-poem p:nth-child(2) {
	transition-delay: 880ms;
}

body.reveal-ready .signs-section.is-visible .signs-poem p:nth-child(3) {
	transition-delay: 970ms;
}

body.reveal-ready .signs-section.is-visible .sign-card-omen {
	transition-delay: 1080ms;
}

body.reveal-ready .signs-section.is-visible .sign-card-seal {
	transition-delay: 1230ms;
}

body.reveal-ready .signs-section.is-visible .sign-card-eclipse {
	transition-delay: 1380ms;
}

body.reveal-ready .signs-section.is-visible .signs-reminder {
	transition-delay: 1540ms;
}

body.reveal-ready .signs-section.is-visible .signs-closing {
	transition-delay: 1640ms;
}

body.reveal-ready .signs-section.is-visible .signs-final-line {
	transition-delay: 1740ms;
}

/* Section 6 turns the rules into a guided ceremony, showing the turn flow before the full rulebook. */
.how-section {
	position: relative;
	padding: 92px 24px 130px;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(9, 7, 6, 0.78) 0%, rgba(13, 9, 7, 0.66) 48%, rgba(8, 6, 5, 0.9) 100%),
		url("assets/21.png") center 60px / min(1500px, 132vw) auto no-repeat,
		radial-gradient(circle at 50% 44%, rgba(59, 38, 20, 0.2), transparent 34rem),
		radial-gradient(circle at 50% 52%, transparent 0 18rem, rgba(199, 161, 90, 0.045) 18.05rem, transparent 18.12rem),
		linear-gradient(180deg, #090706 0%, #0d0907 52%, #080605 100%);
	isolation: isolate;
}

.how-section::before {
	position: absolute;
	inset: 0;
	z-index: -2;
	content: "";
	background:
		radial-gradient(circle, rgba(232, 220, 194, 0.16) 0 1px, transparent 1.5px),
		radial-gradient(circle, rgba(199, 161, 90, 0.12) 0 1px, transparent 1.5px),
		linear-gradient(44deg, transparent 42%, rgba(199, 161, 90, 0.04) 42.15%, transparent 42.35%),
		linear-gradient(128deg, transparent 64%, rgba(232, 220, 194, 0.032) 64.15%, transparent 64.35%);
	background-position: 3rem 5rem, 10rem 8rem, 0 0, 6rem 3rem;
	background-size: 18rem 18rem, 24rem 24rem, 22rem 22rem, 27rem 27rem;
	opacity: 0.34;
}

.how-section::after {
	position: absolute;
	left: 50%;
	top: 18%;
	z-index: -1;
	width: min(980px, 88vw);
	height: min(980px, 88vw);
	content: "";
	border: 1px solid rgba(199, 161, 90, 0.045);
	border-radius: 50%;
	transform: translateX(-50%);
}

.how-header {
	width: min(760px, 100%);
	margin: 0 auto;
	text-align: center;
}

.how-header .eyebrow {
	text-align: center;
}

.how-header h2 {
	color: var(--color-ivory);
	font-size: clamp(3.25rem, 6vw, 4.5rem);
	letter-spacing: 0.05em;
	line-height: 1.05;
	text-align: center;
	text-shadow: 0 20px 52px rgba(0, 0, 0, 0.5);
}

.how-intro {
	margin-top: 30px;
	color: var(--color-parchment);
	font-family: var(--font-serif);
	font-size: clamp(1.05rem, 1.32vw, 1.18rem);
	line-height: 1.75;
}

.how-intro p {
	margin: 0 0 16px;
}

.how-opening-lines {
	margin: 28px 0;
	color: var(--color-ivory);
	font-family: var(--font-serif);
	font-size: clamp(1.17rem, 1.6vw, 1.34rem);
	font-style: italic;
	line-height: 1.8;
}

.how-opening-lines p {
	margin: 0;
}

.turn-diagram {
	display: none;
}

.turn-diagram-table {
	position: relative;
	min-height: 260px;
	border: 1px solid rgba(232, 220, 194, 0.14);
	border-radius: 50%;
	background:
		radial-gradient(ellipse at center, rgba(199, 161, 90, 0.045), transparent 42%),
		radial-gradient(ellipse at center, transparent 56%, rgba(0, 0, 0, 0.32) 100%);
}

.turn-player {
	position: absolute;
	width: 78px;
	height: 16px;
	border: 1px solid rgba(199, 161, 90, 0.16);
	border-radius: 999px;
	background: rgba(232, 220, 194, 0.025);
}

.turn-player-top {
	left: 50%;
	top: 18px;
	transform: translateX(-50%);
}

.turn-player-right {
	right: 32px;
	top: 50%;
	transform: translateY(-50%) rotate(90deg);
}

.turn-player-bottom {
	left: 50%;
	bottom: 18px;
	transform: translateX(-50%);
}

.turn-player-left {
	left: 32px;
	top: 50%;
	transform: translateY(-50%) rotate(90deg);
}

.turn-pool {
	position: absolute;
	left: 50%;
	top: 48%;
	display: grid;
	grid-template-columns: repeat(2, 30px);
	gap: 8px;
	transform: translate(-50%, -50%);
}

.turn-pool span,
.turn-active-row span,
.turn-score-pile span {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border: 1px solid rgba(199, 161, 90, 0.4);
	border-radius: 6px;
	color: var(--color-gold);
	background: rgba(8, 7, 6, 0.75);
	font-family: Georgia, serif;
	line-height: 1;
}

.turn-active-row {
	position: absolute;
	left: 50%;
	bottom: 54px;
	display: flex;
	gap: 7px;
	transform: translateX(-50%);
}

.turn-active-row span:empty {
	background: rgba(232, 220, 194, 0.02);
}

.turn-score-pile {
	position: absolute;
	right: 22%;
	bottom: 46px;
	display: flex;
	gap: 5px;
	transform: rotate(-8deg);
}

.turn-hourglass {
	position: absolute;
	left: 28%;
	bottom: 46px;
	width: 24px;
	height: 46px;
	border-top: 2px solid rgba(199, 161, 90, 0.8);
	border-bottom: 2px solid rgba(199, 161, 90, 0.8);
}

.turn-hourglass::before {
	position: absolute;
	inset: 5px 4px;
	content: "";
	border: 1px solid rgba(199, 161, 90, 0.5);
	clip-path: polygon(0 0, 100% 0, 56% 50%, 100% 100%, 0 100%, 44% 50%);
}

.turn-flow {
	position: absolute;
	left: 50%;
	top: 48%;
	width: 190px;
	height: 96px;
	border-right: 1px solid rgba(199, 161, 90, 0.28);
	border-bottom: 1px solid rgba(199, 161, 90, 0.28);
	border-radius: 0 0 80px 0;
	transform: translate(-50%, -28%);
}

.play-timeline {
	position: relative;
	display: grid;
	gap: 34px;
	width: min(var(--site-medium-max), 100%);
	margin: 68px auto 0;
}

.play-timeline::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 1px;
	content: "";
	background: rgba(199, 161, 90, 0.35);
	box-shadow: 0 0 18px rgba(199, 161, 90, 0.16);
	transform: translateX(-50%);
	transform-origin: top;
}

.play-step {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
}

.play-step-left .play-step-card {
	grid-column: 1;
	margin-right: 64px;
}

.play-step-right .play-step-card {
	grid-column: 2;
	margin-left: 64px;
}

.timeline-marker {
	position: absolute;
	left: 50%;
	top: 38px;
	z-index: 2;
	width: 22px;
	height: 22px;
	border: 1px solid var(--color-gold);
	border-radius: 50%;
	background: #090706;
	box-shadow: 0 0 0 rgba(199, 161, 90, 0);
	transform: translateX(-50%);
}

.timeline-marker::before {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 8px;
	height: 8px;
	content: "";
	border-radius: 50%;
	background: var(--color-gold);
	transform: translate(-50%, -50%);
}

.play-step-card {
	position: relative;
	padding: clamp(28px, 3vw, 34px);
	border: 1px solid rgba(199, 161, 90, 0.18);
	border-radius: 10px;
	background:
		linear-gradient(180deg, rgba(22, 15, 11, 0.95), rgba(8, 7, 6, 0.98));
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
	overflow: hidden;
	isolation: isolate;
	transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.play-step-card::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	content: "";
	background:
		linear-gradient(180deg, rgba(8, 7, 6, 0.88), rgba(8, 7, 6, 0.92)),
		var(--step-bg) center / 106% auto no-repeat,
		linear-gradient(180deg, rgba(22, 15, 11, 0.95), rgba(8, 7, 6, 0.98));
	filter: brightness(0.82) saturate(0.9);
	opacity: 0.9;
	transition: filter 240ms ease, opacity 240ms ease, background-size 240ms ease;
}

.play-step-card::after {
	position: absolute;
	inset: 0;
	z-index: 0;
	content: "";
	background:
		radial-gradient(circle at 50% 18%, rgba(199, 161, 90, 0.1), transparent 13rem),
		linear-gradient(90deg, rgba(8, 7, 6, 0.82), rgba(8, 7, 6, 0.56) 45%, rgba(8, 7, 6, 0.86));
	pointer-events: none;
	transition: background 240ms ease;
}

.play-step-card > * {
	position: relative;
	z-index: 1;
}

.play-step-card:hover,
.play-step-card:focus-within {
	border-color: rgba(199, 161, 90, 0.48);
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.52), 0 0 30px rgba(199, 161, 90, 0.14);
	transform: translateY(-4px);
}

.play-step-card:hover::before,
.play-step-card:focus-within::before {
	background:
		linear-gradient(180deg, rgba(8, 7, 6, 0.56), rgba(8, 7, 6, 0.7)),
		var(--step-bg) center / 112% auto no-repeat,
		linear-gradient(180deg, rgba(22, 15, 11, 0.95), rgba(8, 7, 6, 0.98));
	filter: brightness(1.12) saturate(1.02);
	opacity: 1;
}

.play-step-card:hover::after,
.play-step-card:focus-within::after {
	background:
		radial-gradient(circle at 50% 18%, rgba(199, 161, 90, 0.18), transparent 14rem),
		linear-gradient(90deg, rgba(8, 7, 6, 0.68), rgba(8, 7, 6, 0.38) 45%, rgba(8, 7, 6, 0.72));
}

.play-step:nth-child(1) .play-step-card { --step-bg: url("assets/22.png"); }
.play-step:nth-child(2) .play-step-card { --step-bg: url("assets/23.png"); }
.play-step:nth-child(3) .play-step-card { --step-bg: url("assets/24.png"); }
.play-step:nth-child(4) .play-step-card { --step-bg: url("assets/25.png"); }
.play-step:nth-child(5) .play-step-card { --step-bg: url("assets/26.png"); }
.play-step:nth-child(6) .play-step-card { --step-bg: url("assets/27.png"); }

.step-card-header {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 18px;
}

.step-badge {
	display: inline-grid;
	place-items: center;
	min-width: 42px;
	height: 34px;
	padding: 0 9px;
	border: 1px solid rgba(199, 161, 90, 0.3);
	border-radius: 999px;
	color: var(--color-gold);
	background: rgba(199, 161, 90, 0.1);
	font-family: var(--font-body);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.play-step-card h3 {
	margin: 14px 0 0;
	color: var(--color-ivory);
	font-family: var(--font-title);
	font-size: clamp(1.5rem, 2.4vw, 1.88rem);
	font-weight: 500;
	letter-spacing: 0.07em;
	line-height: 1.15;
	text-transform: uppercase;
}

.play-step-card p {
	margin: 12px 0 0;
	color: var(--color-parchment);
	font-family: var(--font-serif);
	font-size: 1.03rem;
	line-height: 1.65;
}

.step-note {
	padding-top: 12px;
	border-top: 1px solid rgba(199, 161, 90, 0.12);
	color: #827761 !important;
	font-size: 0.94rem !important;
	font-style: italic;
}

.sign-call {
	color: var(--color-ivory) !important;
	font-family: var(--font-serif) !important;
	font-size: clamp(1.5rem, 2.8vw, 1.88rem) !important;
	letter-spacing: 0.06em;
	line-height: 1.3 !important;
	text-align: center;
}

.step-visual {
	display: none;
}

.play-step-card:hover .step-visual,
.play-step-card:focus-within .step-visual {
	filter: none;
}

.step-visual span,
.step-visual strong {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border: 1px solid rgba(199, 161, 90, 0.36);
	border-radius: 6px;
	color: var(--color-gold);
	background:
		radial-gradient(circle at 28% 22%, rgba(255, 236, 184, 0.35), transparent 34%),
		linear-gradient(145deg, rgba(168, 108, 52, 0.72), rgba(52, 25, 14, 0.86));
	font-family: Georgia, serif;
	font-size: 1rem;
	line-height: 1;
}

.step-visual span:empty {
	background: rgba(232, 220, 194, 0.025);
}

.step-visual-pool {
	flex-wrap: wrap;
	width: 82px;
}

.step-visual-row span,
.step-visual-sign span {
	width: 27px;
	height: 27px;
}

.step-visual-crown .bright-crown {
	border-color: rgba(224, 194, 122, 0.78);
	box-shadow: 0 0 20px rgba(224, 194, 122, 0.2);
	transform: scale(1.18);
}

.step-visual-sign {
	padding: 8px;
	
	border-radius: 10px;
}



.step-visual-score {
	gap: 10px;
}

.step-visual-score::before {
	position: absolute;
	left: 12px;
	top: 7px;
	width: 34px;
	height: 24px;
	content: "";
	border-top: 1px solid rgba(199, 161, 90, 0.38);
	border-left: 1px solid rgba(199, 161, 90, 0.38);
	border-radius: 50%;
	transform: rotate(-34deg);
}

.step-visual-score .return-crown {
	opacity: 0.62;
}

.step-visual-end {
	gap: 7px;
}

.step-visual-end span {
	width: 24px;
	height: 24px;
	opacity: 0.8;
}

.step-visual-end strong {
	width: auto;
	min-width: 64px;
	padding: 0 8px;
	color: var(--color-ivory);
	font-size: 0.82rem;
	letter-spacing: 0.06em;
}

.how-summary {
	width: min(760px, 100%);
	margin: 70px auto 0;
	padding: clamp(34px, 4vw, 42px);
	border: 1px solid rgba(199, 161, 90, 0.2);
	border-radius: 10px;
	color: var(--color-parchment);
	background: rgba(199, 161, 90, 0.055);
	font-family: var(--font-serif);
	font-size: 1.08rem;
	line-height: 1.65;
	text-align: center;
}

.how-summary p {
	margin: 0;
}

.how-summary-lines {
	margin: 24px 0;
	color: var(--color-ivory);
	font-family: var(--font-serif);
	font-size: clamp(1.38rem, 2.5vw, 1.75rem);
	font-style: italic;
	line-height: 1.8;
}

.how-summary-final {
	margin-top: 24px !important;
	color: var(--color-gold) !important;
	font-size: 1.14rem;
}

.how-actions {
	margin: 28px auto 0;
	text-align: center;
}

.how-actions .button {
	box-shadow: 0 12px 30px rgba(199, 161, 90, 0.12);
}

.how-actions .button:hover,
.how-actions .button:focus-visible {
	border-color: var(--color-gold-bright);
	box-shadow: 0 0 26px rgba(199, 161, 90, 0.22), 0 12px 30px rgba(199, 161, 90, 0.14);
}

.how-actions p {
	margin: 12px 0 0;
	color: #827761;
	font-family: var(--font-serif);
	font-size: 0.92rem;
	font-style: italic;
}

body.reveal-ready .how-section .eyebrow,
body.reveal-ready .how-section h2,
body.reveal-ready .how-intro > p,
body.reveal-ready .how-opening-lines,
body.reveal-ready .turn-diagram,
body.reveal-ready .play-timeline::before,
body.reveal-ready .play-step-card,
body.reveal-ready .timeline-marker,
body.reveal-ready .how-summary,
body.reveal-ready .how-actions {
	opacity: 0;
}

body.reveal-ready .how-section .eyebrow,
body.reveal-ready .how-section h2,
body.reveal-ready .how-intro > p,
body.reveal-ready .how-opening-lines,
body.reveal-ready .turn-diagram,
body.reveal-ready .play-step-card,
body.reveal-ready .how-summary,
body.reveal-ready .how-actions {
	transform: translateY(18px);
}

body.reveal-ready .play-timeline::before {
	transform: translateX(-50%) scaleY(0);
}

body.reveal-ready .how-section.is-visible .eyebrow,
body.reveal-ready .how-section.is-visible h2,
body.reveal-ready .how-section.is-visible .how-intro > p,
body.reveal-ready .how-section.is-visible .how-opening-lines,
body.reveal-ready .how-section.is-visible .turn-diagram,
body.reveal-ready .how-section.is-visible .play-timeline::before,
body.reveal-ready .how-section.is-visible .play-step-card,
body.reveal-ready .how-section.is-visible .timeline-marker,
body.reveal-ready .how-section.is-visible .how-summary,
body.reveal-ready .how-section.is-visible .how-actions {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 700ms ease, transform 820ms cubic-bezier(0.19, 1, 0.22, 1);
}

body.reveal-ready .how-section.is-visible .play-timeline::before {
	transform: translateX(-50%) scaleY(1);
	transition: opacity 700ms ease 620ms, transform 1600ms ease 620ms;
}

body.reveal-ready .how-section.is-visible .play-step-card:hover,
body.reveal-ready .how-section.is-visible .play-step-card:focus-within {
	transform: translateY(-4px);
}

body.reveal-ready .how-section.is-visible .play-step-card {
	transition: opacity 700ms ease, transform 820ms cubic-bezier(0.19, 1, 0.22, 1), border-color 220ms ease, box-shadow 220ms ease;
}

body.reveal-ready .how-section.is-visible .timeline-marker {
	box-shadow: 0 0 18px rgba(199, 161, 90, 0.18);
}

body.reveal-ready .how-section.is-visible .eyebrow {
	transition-delay: 80ms;
}

body.reveal-ready .how-section.is-visible h2 {
	transition-delay: 180ms;
}

body.reveal-ready .how-section.is-visible .how-intro > p:nth-child(1) {
	transition-delay: 300ms;
}

body.reveal-ready .how-section.is-visible .how-intro > p:nth-child(2) {
	transition-delay: 390ms;
}

body.reveal-ready .how-section.is-visible .how-opening-lines {
	transition-delay: 480ms;
}

body.reveal-ready .how-section.is-visible .how-intro > p:nth-child(4) {
	transition-delay: 570ms;
}

body.reveal-ready .how-section.is-visible .turn-diagram {
	transition-delay: 650ms;
}

body.reveal-ready .how-section.is-visible .play-step:nth-child(1) .play-step-card,
body.reveal-ready .how-section.is-visible .play-step:nth-child(1) .timeline-marker {
	transition-delay: 780ms;
}

body.reveal-ready .how-section.is-visible .play-step:nth-child(2) .play-step-card,
body.reveal-ready .how-section.is-visible .play-step:nth-child(2) .timeline-marker {
	transition-delay: 900ms;
}

body.reveal-ready .how-section.is-visible .play-step:nth-child(3) .play-step-card,
body.reveal-ready .how-section.is-visible .play-step:nth-child(3) .timeline-marker {
	transition-delay: 1020ms;
}

body.reveal-ready .how-section.is-visible .play-step:nth-child(4) .play-step-card,
body.reveal-ready .how-section.is-visible .play-step:nth-child(4) .timeline-marker {
	transition-delay: 1140ms;
}

body.reveal-ready .how-section.is-visible .play-step:nth-child(5) .play-step-card,
body.reveal-ready .how-section.is-visible .play-step:nth-child(5) .timeline-marker {
	transition-delay: 1260ms;
}

body.reveal-ready .how-section.is-visible .play-step:nth-child(6) .play-step-card,
body.reveal-ready .how-section.is-visible .play-step:nth-child(6) .timeline-marker {
	transition-delay: 1380ms;
}

body.reveal-ready .how-section.is-visible .how-summary {
	transition-delay: 1520ms;
}

body.reveal-ready .how-section.is-visible .how-actions {
	transition-delay: 1640ms;
}

/* Section 7 presents the actions as tactical instruments: small moves with visible pressure. */
.actions-section {
	position: relative;
	padding: 120px 24px 130px;
	overflow: hidden;
	background:
		radial-gradient(circle at 50% 43%, rgba(199, 161, 90, 0.08), transparent 22rem),
		linear-gradient(180deg, #080606 0%, #120a08 48%, #060504 100%);
	isolation: isolate;
}

.actions-section::before {
	position: absolute;
	inset: 0;
	z-index: -2;
	content: "";
	background:
		radial-gradient(circle at 16% 22%, rgba(199, 161, 90, 0.032), transparent 2px),
		radial-gradient(circle at 76% 66%, rgba(232, 220, 194, 0.028), transparent 2px),
		linear-gradient(34deg, transparent 34%, rgba(199, 161, 90, 0.046) 34.12%, transparent 34.28%),
		linear-gradient(122deg, transparent 62%, rgba(199, 161, 90, 0.035) 62.12%, transparent 62.28%);
	background-size: 210px 210px, 260px 260px, 220px 220px, 280px 280px;
	opacity: 0.78;
}

.actions-section::after {
	position: absolute;
	left: 50%;
	top: 48%;
	z-index: -1;
	width: min(760px, 70vw);
	height: min(760px, 70vw);
	content: "";
	border-radius: 50%;
	background: radial-gradient(circle at center, rgba(199, 161, 90, 0.075), transparent 58%);
	transform: translate(-50%, -50%);
}

.actions-header {
	width: min(780px, 100%);
	margin: 0 auto;
	text-align: center;
}

.actions-header .eyebrow {
	text-align: center;
}

.actions-header h2 {
	color: var(--color-ivory);
	font-size: clamp(3.25rem, 6vw, 4.5rem);
	letter-spacing: 0.05em;
	line-height: 1.05;
	text-align: center;
	text-shadow: 0 20px 52px rgba(0, 0, 0, 0.5);
}

.actions-intro {
	margin-top: 30px;
	color: var(--color-parchment);
	font-family: var(--font-serif);
	font-size: clamp(1.05rem, 1.32vw, 1.18rem);
	line-height: 1.75;
}

.actions-intro p {
	margin: 0 0 16px;
}

.actions-poem {
	margin: 28px auto;
	color: var(--color-ivory);
	font-family: var(--font-serif);
	font-size: clamp(1.22rem, 1.9vw, 1.5rem);
	font-style: italic;
	line-height: 1.8;
	text-align: center;
}

.actions-poem p {
	margin: 0;
}

.actions-banner {
	position: relative;
	width: min(var(--site-medium-max), 100%);
	min-height: clamp(300px, 35vw, 380px);
	margin: 56px auto 68px;
	border: 1px solid rgba(199, 161, 90, 0.22);
	border-radius: 14px;
	background:
		radial-gradient(circle at 30% 32%, rgba(199, 161, 90, 0.18), transparent 17rem),
		linear-gradient(145deg, rgba(60, 28, 16, 0.88), rgba(7, 5, 4, 0.96));
	box-shadow: 0 30px 100px rgba(0, 0, 0, 0.65), inset 0 0 80px rgba(0, 0, 0, 0.48);
	overflow: hidden;
}

.actions-banner img {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.actions-banner::before {
	position: absolute;
	inset: 0;
	z-index: 3;
	content: "";
	background:
		radial-gradient(ellipse at center, transparent 42%, rgba(0, 0, 0, 0.68) 100%),
		linear-gradient(135deg, rgba(255, 224, 160, 0.12), transparent 34%);
	pointer-events: none;
}

.actions-banner-scene {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.banner-hand {
	position: absolute;
	right: 18%;
	top: 22%;
	width: 150px;
	height: 82px;
	border-radius: 70% 30% 38% 62%;
	background: linear-gradient(135deg, rgba(196, 136, 92, 0.3), rgba(72, 33, 23, 0.1));
	transform: rotate(-14deg);
	opacity: 0.72;
}

.banner-hand::before {
	position: absolute;
	left: -52px;
	top: 18px;
	width: 82px;
	height: 18px;
	content: "";
	border-radius: 999px;
	background: rgba(196, 136, 92, 0.22);
	transform: rotate(7deg);
}

.banner-die,
.banner-row-die,
.banner-row-space {
	position: absolute;
	display: grid;
	place-items: center;
	width: 62px;
	height: 62px;
	border: 1px solid rgba(83, 43, 23, 0.88);
	border-radius: 12px;
	color: #21110d;
	background:
		radial-gradient(circle at 28% 24%, rgba(255, 238, 190, 0.76), transparent 34%),
		linear-gradient(145deg, #c89251, #7b421f 64%, #3b1d10);
	box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.11), inset -8px -12px 22px rgba(0, 0, 0, 0.35), 0 16px 23px rgba(0, 0, 0, 0.45);
	font-family: Georgia, serif;
	font-size: 1.8rem;
}

.banner-crown {
	left: 38%;
	top: 42%;
	transform: rotate(-12deg);
}

.banner-moon {
	left: 29%;
	top: 55%;
	transform: rotate(19deg) scale(0.9);
}

.banner-star {
	left: 47%;
	top: 58%;
	transform: rotate(-20deg) scale(0.86);
}

.banner-row-die {
	left: 16%;
	bottom: 17%;
	transform: rotate(6deg);
}

.banner-row-space {
	left: calc(16% + 78px);
	bottom: 17%;
	border-color: rgba(232, 220, 194, 0.2);
	background: rgba(0, 0, 0, 0.14);
}

.banner-hourglass {
	position: absolute;
	right: 16%;
	bottom: 16%;
	width: 48px;
	height: 92px;
	border-top: 4px solid rgba(199, 161, 90, 0.82);
	border-bottom: 4px solid rgba(199, 161, 90, 0.82);
}

.banner-hourglass::before {
	position: absolute;
	inset: 8px 8px;
	content: "";
	border: 1px solid rgba(232, 220, 194, 0.28);
	clip-path: polygon(0 0, 100% 0, 57% 50%, 100% 100%, 0 100%, 43% 50%);
}

.actions-banner p {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 4;
	margin: 0;
	color: var(--color-ivory);
	font-family: var(--font-title);
	font-size: clamp(1rem, 2vw, 1.35rem);
	letter-spacing: 0.12em;
	line-height: 1.4;
	text-align: center;
	text-transform: uppercase;
	transform: translate(-50%, -50%);
}

.actions-banner p::before,
.actions-banner p::after {
	display: block;
	width: 120px;
	height: 1px;
	margin: 0 auto 18px;
	content: "";
	background: rgba(199, 161, 90, 0.45);
}

.actions-banner p::after {
	margin: 18px auto 0;
}

.action-cards {
	position: relative;
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 22px;
	width: min(var(--site-max), 100%);
	margin: 0 auto;
}

.action-card {
	position: relative;
	grid-column: span 3;
	min-height: 360px;
	padding: clamp(30px, 3vw, 36px);
	border: 1px solid rgba(199, 161, 90, 0.18);
	border-radius: 12px;
	background:
		linear-gradient(rgba(8, 7, 6, 0.86), rgba(8, 7, 6, 0.9)),
		var(--action-diagram),
		var(--action-watermark),
		linear-gradient(180deg, rgba(21, 15, 11, 0.96), rgba(8, 7, 6, 0.99));
	background-position: center, center, center, center;
	background-repeat: no-repeat;
	background-size: cover, min(88%, 560px) auto, cover, cover;
	box-shadow: 0 26px 80px rgba(0, 0, 0, 0.48);
	outline: none;
	overflow: hidden;
	transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease, filter 220ms ease;
}

.action-card::before {
	position: absolute;
	right: -18px;
	top: -18px;
	color: rgba(199, 161, 90, 0.04);
	font-family: Georgia, serif;
	font-size: 9rem;
	line-height: 1;
	content: var(--action-symbol);
	pointer-events: none;
}

.action-card:hover,
.action-card:focus-within {
	border-color: rgba(199, 161, 90, 0.52);
	box-shadow: 0 34px 96px rgba(0, 0, 0, 0.58), 0 0 28px rgba(199, 161, 90, 0.07);
	background:
		linear-gradient(rgba(8, 7, 6, 0.48), rgba(8, 7, 6, 0.58)),
		var(--action-diagram),
		var(--action-watermark),
		linear-gradient(180deg, rgba(21, 15, 11, 0.92), rgba(8, 7, 6, 0.96));
	background-position: center, center, center, center;
	background-repeat: no-repeat;
	background-size: cover, min(94%, 620px) auto, cover, cover;
	transform: translateY(-5px);
}

.action-claim {
	--action-symbol: "♛";
	--action-diagram: url("assets/29.png");
	--action-watermark: radial-gradient(circle at 82% 12%, rgba(199, 161, 90, 0.03), transparent 11rem);
}

.action-recast {
	--action-symbol: "☉";
	--action-diagram: url("assets/30.png");
	--action-watermark: radial-gradient(circle at 82% 12%, rgba(199, 161, 90, 0.03), transparent 11rem);
}

.action-shift {
	--action-symbol: "☾";
	--action-diagram: url("assets/31.png");
	--action-watermark: radial-gradient(circle at 50% 18%, rgba(199, 161, 90, 0.08), transparent 16rem);
	grid-column: 2 / span 4;
	min-height: 430px;
	border-color: rgba(199, 161, 90, 0.3);
}

.action-parley {
	--action-symbol: "✦";
	--action-diagram: url("assets/32.png");
	--action-watermark: radial-gradient(circle at 82% 12%, rgba(199, 161, 90, 0.03), transparent 11rem);
}

.action-stir {
	--action-symbol: "◜";
	--action-diagram: url("assets/33.png");
	--action-watermark: radial-gradient(circle at 82% 12%, rgba(199, 161, 90, 0.03), transparent 11rem);
}

.action-visual {
	display: none;
}

.action-card:hover .action-visual,
.action-card:focus-within .action-visual {
	filter: drop-shadow(0 0 18px rgba(199, 161, 90, 0.18));
}

.mini-pool-die,
.mini-row i,
.action-visual-stir span,
.tilt-die {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border: 1px solid rgba(199, 161, 90, 0.38);
	border-radius: 7px;
	color: var(--color-gold);
	background: linear-gradient(145deg, rgba(168, 108, 52, 0.72), rgba(52, 25, 14, 0.86));
	font-family: Georgia, serif;
	font-style: normal;
	line-height: 1;
}

.mini-row {
	display: flex;
	gap: 5px;
}

.mini-row i:empty {
	background: rgba(232, 220, 194, 0.025);
}

.mini-arrow,
.mini-curve,
.tip-arrow,
.trade-line {
	position: relative;
	width: 42px;
	height: 1px;
	background: rgba(199, 161, 90, 0.55);
}

.mini-arrow::after,
.trade-line::after {
	position: absolute;
	right: -2px;
	top: -4px;
	width: 8px;
	height: 8px;
	content: "";
	border-top: 1px solid rgba(199, 161, 90, 0.65);
	border-right: 1px solid rgba(199, 161, 90, 0.65);
	transform: rotate(45deg);
}

.action-card:hover .action-visual-claim .mini-pool-die {
	transform: translateX(5px);
}

.mini-curve {
	width: 38px;
	height: 26px;
	border-top: 1px solid rgba(199, 161, 90, 0.55);
	border-right: 1px solid rgba(199, 161, 90, 0.55);
	border-radius: 50%;
	background: transparent;
}

.action-visual-shift {
	justify-content: center;
}

.tilt-die {
	width: 54px;
	height: 54px;
	font-size: 1.5rem;
	transform-origin: bottom right;
}

.action-card:hover .tilt-die {
	transform: rotate(5deg) translateY(-2px);
}

.tip-arrow {
	width: 34px;
	height: 28px;
	border-top: 1px solid rgba(199, 161, 90, 0.55);
	border-right: 1px solid rgba(199, 161, 90, 0.55);
	border-radius: 50%;
	background: transparent;
	transform: rotate(22deg);
}

.action-visual-parley {
	justify-content: center;
}

.trade-line {
	width: 34px;
}

.action-visual-stir {
	justify-content: center;
	flex-wrap: wrap;
	width: 92px;
	margin-left: auto;
}

.action-visual-stir i {
	position: absolute;
	inset: 4px;
	border: 1px solid rgba(199, 161, 90, 0.35);
	border-radius: 50%;
}

.action-card:hover .action-visual-stir span {
	transform: rotate(4deg) translateY(-2px);
}

.action-card h3 {
	position: relative;
	z-index: 1;
	margin: 0;
	color: var(--color-ivory);
	font-family: var(--font-title);
	font-size: clamp(1.9rem, 3vw, 2.38rem);
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1.1;
	text-transform: uppercase;
}

.action-line {
	position: relative;
	z-index: 1;
	margin: 8px 0 22px;
	color: var(--color-gold);
	font-family: var(--font-serif);
	font-size: 1.1rem;
	font-style: italic;
	line-height: 1.35;
}

.action-rule,
.action-tactic {
	position: relative;
	z-index: 1;
}

.action-rule h4,
.action-tactic h4 {
	margin: 0 0 8px;
	color: #a78344;
	font-family: var(--font-body);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.action-tactic h4 {
	margin-top: 22px;
}

.action-rule p,
.action-tactic p {
	margin: 0;
	font-family: var(--font-serif);
	line-height: 1.62;
}

.action-rule p {
	color: var(--color-parchment);
	font-size: 1rem;
}

.action-rule strong {
	color: var(--color-ivory);
	font-weight: 500;
}

.action-tactic p {
	color: #958a75;
	font-size: 0.96rem;
}

.action-card blockquote {
	position: relative;
	z-index: 1;
	margin: 24px 0 0;
	padding: 15px 16px;
	border: 1px solid rgba(199, 161, 90, 0.16);
	border-radius: 8px;
	color: var(--color-ivory);
	background: rgba(199, 161, 90, 0.055);
	font-family: var(--font-serif);
	font-size: 1.02rem;
	font-style: italic;
	line-height: 1.45;
	transition: background-color 200ms ease, border-color 200ms ease;
}

.action-card h3,
.action-card .action-line,
.action-card .action-rule,
.action-card .action-tactic,
.action-card blockquote {
	transition: background-color 200ms ease, border-color 200ms ease, text-shadow 200ms ease;
}

.action-card:hover h3,
.action-card:focus-within h3,
.action-card:hover .action-line,
.action-card:focus-within .action-line {
	text-shadow: 0 0 22px rgba(0, 0, 0, 0.75);
}

.action-card:hover blockquote,
.action-card:focus-within blockquote {
	border-color: rgba(199, 161, 90, 0.28);
	background: rgba(199, 161, 90, 0.075);
}

.action-active-line {
	width: min(760px, 100%);
	margin: 34px auto 0;
	color: var(--color-gold);
	font-family: var(--font-serif);
	font-size: 1.2rem;
	font-style: italic;
	line-height: 1.45;
	text-align: center;
}

.action-comparison {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 22px;
	width: min(980px, 100%);
	margin: 34px auto 0;
	padding: 18px 24px;
	border: 1px solid rgba(199, 161, 90, 0.16);
	border-radius: 8px;
	color: var(--color-parchment);
	background: rgba(232, 220, 194, 0.035);
	font-family: var(--font-serif);
	font-size: 1.02rem;
	line-height: 1.45;
	text-align: center;
}

.action-comparison p {
	margin: 0;
}

.action-comparison span {
	color: var(--color-gold);
}

.actions-closing {
	width: min(780px, 100%);
	margin: 52px auto 0;
	color: var(--color-parchment);
	font-family: var(--font-serif);
	font-size: 1.08rem;
	line-height: 1.72;
	text-align: center;
}

.actions-closing p {
	margin: 0 0 17px;
}

.actions-closing-lines {
	margin: 28px 0;
	color: var(--color-ivory);
	font-size: clamp(1.38rem, 2.5vw, 1.75rem);
	font-style: italic;
	line-height: 1.85;
}

.actions-closing-lines p {
	margin: 0;
}

.actions-final-line {
	width: min(860px, 100%);
	margin: 32px auto 0;
	color: var(--color-gold);
	font-family: var(--font-serif);
	font-size: clamp(1.18rem, 2vw, 1.5rem);
	font-style: italic;
	line-height: 1.5;
	text-align: center;
}

body.reveal-ready .actions-section .eyebrow,
body.reveal-ready .actions-section h2,
body.reveal-ready .actions-intro > p,
body.reveal-ready .actions-poem p,
body.reveal-ready .actions-banner,
body.reveal-ready .action-card,
body.reveal-ready .action-active-line,
body.reveal-ready .action-comparison,
body.reveal-ready .actions-closing,
body.reveal-ready .actions-final-line {
	opacity: 0;
	transform: translateY(16px);
}

body.reveal-ready .actions-banner {
	filter: brightness(0.45);
}

body.reveal-ready .actions-section.is-visible .eyebrow,
body.reveal-ready .actions-section.is-visible h2,
body.reveal-ready .actions-section.is-visible .actions-intro > p,
body.reveal-ready .actions-section.is-visible .actions-poem p,
body.reveal-ready .actions-section.is-visible .actions-banner,
body.reveal-ready .actions-section.is-visible .action-card,
body.reveal-ready .actions-section.is-visible .action-active-line,
body.reveal-ready .actions-section.is-visible .action-comparison,
body.reveal-ready .actions-section.is-visible .actions-closing,
body.reveal-ready .actions-section.is-visible .actions-final-line {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 760ms ease, transform 920ms cubic-bezier(0.19, 1, 0.22, 1), filter 900ms ease;
}

body.reveal-ready .actions-section.is-visible .actions-banner {
	filter: brightness(1);
}

body.reveal-ready .actions-section.is-visible .action-card:hover,
body.reveal-ready .actions-section.is-visible .action-card:focus-within {
	transform: translateY(-5px);
}

body.reveal-ready .actions-section.is-visible .action-card {
	transition: opacity 760ms ease, transform 920ms cubic-bezier(0.19, 1, 0.22, 1), border-color 220ms ease, box-shadow 220ms ease;
}

body.reveal-ready .actions-section.is-visible .eyebrow {
	transition-delay: 80ms;
}

body.reveal-ready .actions-section.is-visible h2 {
	transition-delay: 180ms;
}

body.reveal-ready .actions-section.is-visible .actions-intro > p:nth-child(1) {
	transition-delay: 300ms;
}

body.reveal-ready .actions-section.is-visible .actions-intro > p:nth-child(2) {
	transition-delay: 390ms;
}

body.reveal-ready .actions-section.is-visible .actions-poem p:nth-child(1) {
	transition-delay: 480ms;
}

body.reveal-ready .actions-section.is-visible .actions-poem p:nth-child(2) {
	transition-delay: 560ms;
}

body.reveal-ready .actions-section.is-visible .actions-poem p:nth-child(3) {
	transition-delay: 640ms;
}

body.reveal-ready .actions-section.is-visible .actions-poem p:nth-child(4) {
	transition-delay: 720ms;
}

body.reveal-ready .actions-section.is-visible .actions-poem p:nth-child(5) {
	transition-delay: 800ms;
}

body.reveal-ready .actions-section.is-visible .actions-intro > p:nth-child(4) {
	transition-delay: 890ms;
}

body.reveal-ready .actions-section.is-visible .actions-intro > p:nth-child(5) {
	transition-delay: 980ms;
}

body.reveal-ready .actions-section.is-visible .actions-intro > p:nth-child(6) {
	transition-delay: 1070ms;
}

body.reveal-ready .actions-section.is-visible .actions-banner {
	transition-delay: 1160ms;
}

body.reveal-ready .actions-section.is-visible .action-claim {
	transition-delay: 1280ms;
}

body.reveal-ready .actions-section.is-visible .action-recast {
	transition-delay: 1400ms;
}

body.reveal-ready .actions-section.is-visible .action-shift {
	transition-delay: 1520ms;
}

body.reveal-ready .actions-section.is-visible .action-parley {
	transition-delay: 1640ms;
}

body.reveal-ready .actions-section.is-visible .action-stir {
	transition-delay: 1760ms;
}

body.reveal-ready .actions-section.is-visible .action-active-line,
body.reveal-ready .actions-section.is-visible .action-comparison {
	transition-delay: 1880ms;
}

body.reveal-ready .actions-section.is-visible .actions-closing {
	transition-delay: 1980ms;
}

body.reveal-ready .actions-section.is-visible .actions-final-line {
	transition-delay: 2080ms;
}

/* Section 8 is the formal rulebook: stable, searchable, and more restrained than the marketing sections. */
.rules-section {
	position: relative;
	padding: 120px 24px 140px;
	overflow: visible;
	background:
		radial-gradient(circle at 18% 18%, rgba(199, 161, 90, 0.05), transparent 24rem),
		radial-gradient(circle at 76% 40%, rgba(72, 35, 20, 0.18), transparent 28rem),
		linear-gradient(180deg, #080706 0%, #0b0806 48%, #070605 100%);
	isolation: isolate;
}

.rules-section::before {
	position: absolute;
	inset: 0;
	z-index: -2;
	content: "";
	background:
		repeating-linear-gradient(30deg, rgba(232, 220, 194, 0.028) 0 1px, transparent 1px 7px),
		repeating-linear-gradient(116deg, rgba(199, 161, 90, 0.02) 0 1px, transparent 1px 9px);
	opacity: 0.54;
}

.rules-section::after {
	position: absolute;
	right: 5%;
	top: 18%;
	z-index: -1;
	width: clamp(14rem, 26vw, 28rem);
	height: clamp(14rem, 26vw, 28rem);
	content: "";
	background: url("assets/icon-crown-gold.png") center / contain no-repeat;
	opacity: 0.035;
	transform: rotate(10deg);
}

.rules-header {
	width: min(780px, 100%);
	margin: 0 auto;
	text-align: center;
}

.rules-header .eyebrow {
	text-align: center;
}

.rules-header h2 {
	color: var(--color-ivory);
	font-size: clamp(3.25rem, 6vw, 4.5rem);
	letter-spacing: 0.05em;
	line-height: 1.05;
	text-align: center;
	text-shadow: 0 20px 52px rgba(0, 0, 0, 0.5);
}

.rules-intro {
	margin-top: 30px;
	color: var(--color-parchment);
	font-family: var(--font-serif);
	font-size: clamp(1.05rem, 1.32vw, 1.18rem);
	line-height: 1.75;
}

.rules-intro p {
	margin: 0 0 16px;
}

.rulebook-note {
	width: min(700px, 100%);
	margin: 34px auto 0;
	color: var(--color-gold);
	font-family: var(--font-serif);
	font-size: clamp(1.12rem, 1.7vw, 1.32rem);
	font-style: italic;
	line-height: 1.45;
}

.rules-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	margin-top: 30px;
}

.rules-button-note {
	margin: 12px 0 0;
	color: #827761;
	font-family: var(--font-serif);
	font-size: 0.92rem;
	font-style: italic;
}

.rulebook-hero {
	position: relative;
	width: min(var(--site-medium-max), 100%);
	min-height: clamp(300px, 35vw, 380px);
	margin: 58px auto 68px;
	border: 1px solid rgba(199, 161, 90, 0.22);
	border-radius: 14px;
	background:
		radial-gradient(circle at 30% 32%, rgba(199, 161, 90, 0.16), transparent 17rem),
		linear-gradient(145deg, rgba(59, 31, 20, 0.9), rgba(7, 5, 4, 0.96));
	box-shadow: 0 30px 100px rgba(0, 0, 0, 0.62), inset 0 0 80px rgba(0, 0, 0, 0.46);
	overflow: hidden;
}

.rulebook-hero img {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.rulebook-hero::before {
	position: absolute;
	inset: 0;
	z-index: 3;
	content: "";
	background:
		linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.78) 100%),
		radial-gradient(ellipse at center, transparent 44%, rgba(0, 0, 0, 0.66) 100%);
	pointer-events: none;
}

.rulebook-hero::after {
	position: absolute;
	inset: -20%;
	z-index: 4;
	content: "";
	background-image: radial-gradient(circle, rgba(232, 220, 194, 0.16) 0 1px, transparent 1.5px);
	background-size: 18rem 18rem;
	opacity: 0.14;
	animation: dust-float 18s ease-in-out infinite alternate;
	pointer-events: none;
}

.rulebook-hero-scene {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.rule-paper {
	position: absolute;
	left: 18%;
	top: 18%;
	width: 46%;
	height: 58%;
	border: 1px solid rgba(199, 161, 90, 0.2);
	border-radius: 4px;
	background:
		linear-gradient(112deg, rgba(232, 220, 194, 0.72), rgba(171, 134, 77, 0.28)),
		repeating-linear-gradient(0deg, rgba(45, 26, 16, 0.18) 0 1px, transparent 1px 17px);
	box-shadow: 0 24px 44px rgba(0, 0, 0, 0.38);
	transform: rotate(-7deg);
}

.rule-crown-die {
	position: absolute;
	left: 52%;
	top: 48%;
	display: grid;
	place-items: center;
	width: 76px;
	height: 76px;
	border: 1px solid rgba(83, 43, 23, 0.88);
	border-radius: 14px;
	color: #21110d;
	background:
		radial-gradient(circle at 28% 24%, rgba(255, 238, 190, 0.76), transparent 34%),
		linear-gradient(145deg, #c89251, #7b421f 64%, #3b1d10);
	box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.11), inset -8px -12px 22px rgba(0, 0, 0, 0.35), 0 16px 23px rgba(0, 0, 0, 0.45);
	font-family: Georgia, serif;
	font-size: 2.3rem;
	transform: rotate(12deg);
}

.rule-hourglass {
	position: absolute;
	right: 20%;
	top: 25%;
	width: 48px;
	height: 94px;
	border-top: 4px solid rgba(199, 161, 90, 0.82);
	border-bottom: 4px solid rgba(199, 161, 90, 0.82);
	filter: blur(0.2px);
	opacity: 0.72;
}

.rule-hourglass::before {
	position: absolute;
	inset: 8px 8px;
	content: "";
	border: 1px solid rgba(232, 220, 194, 0.28);
	clip-path: polygon(0 0, 100% 0, 57% 50%, 100% 100%, 0 100%, 43% 50%);
}

.rule-case-clasp {
	position: absolute;
	right: 12%;
	bottom: 18%;
	width: 64px;
	height: 28px;
	border: 1px solid rgba(224, 194, 122, 0.4);
	border-radius: 4px;
	background: rgba(199, 161, 90, 0.18);
	transform: rotate(8deg);
}

.rulebook-hero-copy {
	position: absolute;
	left: 34px;
	bottom: 30px;
	z-index: 5;
}

.rulebook-hero-copy h3 {
	margin: 0 0 8px;
	color: var(--color-ivory);
	font-family: var(--font-title);
	font-size: clamp(1.16rem, 2vw, 1.55rem);
	font-weight: 500;
	letter-spacing: 0.12em;
	line-height: 1.25;
	text-transform: uppercase;
}

.rulebook-hero-copy p {
	margin: 0;
	color: var(--color-gold);
	font-family: var(--font-serif);
	font-size: 1.04rem;
	font-style: italic;
}

.rules-layout {
	display: grid;
	grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
	gap: 28px;
	align-items: start;
	width: min(var(--site-wide-max), 100%);
	margin: 0 auto;
}

.rules-sidebar {
	position: sticky;
	top: calc(var(--sticky-header-offset) + 16px);
	align-self: start;
	z-index: 3;
}

.rules-nav-panel,
.quick-reference-card {
	border: 1px solid rgba(199, 161, 90, 0.18);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.025);
}

.rules-nav-panel {
	padding: 24px;
}

.rules-nav-panel h3,
.quick-reference-card h3 {
	margin: 0 0 8px;
	color: var(--color-gold);
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.rules-nav-panel > p {
	margin: 0 0 18px;
	color: #827761;
	font-family: var(--font-serif);
	font-size: 0.95rem;
	font-style: italic;
}

.rules-nav {
	display: grid;
	gap: 6px;
}

.rules-nav a {
	position: relative;
	display: block;
	padding: 9px 10px 9px 24px;
	border-radius: 6px;
	color: var(--color-parchment);
	font-family: var(--font-body);
	font-size: 0.86rem;
	line-height: 1.3;
	transition: color 160ms ease, background-color 160ms ease;
}

.rules-nav a::before {
	position: absolute;
	left: 8px;
	top: 50%;
	color: var(--color-gold);
	content: "";
	font-family: Georgia, serif;
	transform: translateY(-50%);
}

.rules-nav a:hover,
.rules-nav a:focus-visible {
	color: var(--color-ivory);
}

.rules-nav a.is-active {
	color: var(--color-gold);
	background: rgba(199, 161, 90, 0.06);
}

.rules-nav a.is-active::before {
	width: 11px;
	height: 11px;
	content: "";
	background: url("assets/icon-crown-gold.png") center / contain no-repeat;
}

.quick-reference-card {
	margin-top: 22px;
	padding: 22px;
	background: rgba(199, 161, 90, 0.055);
}

.quick-reference-card p {
	margin: 0;
	color: var(--color-ivory);
	font-family: var(--font-serif);
	font-size: 1.08rem;
	line-height: 1.7;
}

.quick-reference-card p:last-child {
	margin-top: 14px;
	color: #827761;
	font-size: 0.86rem;
	font-style: italic;
}

.rulebook-panel {
	position: relative;
	padding: clamp(24px, 4vw, 46px);
	border: 1px solid rgba(199, 161, 90, 0.24);
	border-radius: 14px;
	background:
		linear-gradient(180deg, rgba(19, 14, 10, 0.98), rgba(9, 7, 6, 0.99));
	box-shadow: 0 34px 100px rgba(0, 0, 0, 0.55);
}

.rulebook-panel::before,
.rulebook-panel::after {
	position: absolute;
	width: 52px;
	height: 52px;
	content: "";
	pointer-events: none;
}

.rulebook-panel::before {
	left: 14px;
	top: 14px;
	border-top: 1px solid rgba(199, 161, 90, 0.28);
	border-left: 1px solid rgba(199, 161, 90, 0.28);
}

.rulebook-panel::after {
	right: 14px;
	bottom: 14px;
	border-right: 1px solid rgba(199, 161, 90, 0.28);
	border-bottom: 1px solid rgba(199, 161, 90, 0.28);
}

.rules-mobile-jump {
	display: none;
}

.rules-tools {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
	align-items: end;
	margin-bottom: 22px;
}

.rules-tools label,
.rules-mobile-jump label {
	display: block;
	margin-bottom: 8px;
	color: #a78344;
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.rule-search,
.rules-mobile-jump select {
	width: 100%;
	min-height: 48px;
	padding: 14px 16px;
	border: 1px solid rgba(199, 161, 90, 0.22);
	border-radius: 6px;
	color: var(--color-ivory);
	background: #090706;
	font: inherit;
}

.rule-search::placeholder {
	color: #827761;
}

.rules-tool-buttons {
	display: flex;
	gap: 10px;
}

.rules-tool-buttons button {
	min-height: 48px;
	padding: 12px 14px;
	border: 1px solid rgba(199, 161, 90, 0.28);
	border-radius: 6px;
	color: var(--color-gold);
	background: transparent;
	font-family: var(--font-body);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.rules-tool-buttons button:hover,
.rules-tool-buttons button:focus-visible {
	border-color: var(--color-gold);
	color: var(--color-ivory);
	background: rgba(199, 161, 90, 0.06);
}

.rules-no-results {
	margin: 22px 0;
	color: var(--color-gold);
	font-family: var(--font-serif);
	font-size: 1.1rem;
	font-style: italic;
	text-align: center;
}

.rules-accordion {
	position: relative;
	z-index: 1;
}

.rule-section {
	margin-bottom: 12px;
}

.rule-section[hidden] {
	display: none;
}

.rule-toggle {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 18px;
	align-items: center;
	width: 100%;
	padding: 20px 24px;
	border: 1px solid rgba(199, 161, 90, 0.12);
	border-radius: 8px;
	color: inherit;
	background: rgba(255, 255, 255, 0.025);
	cursor: pointer;
	text-align: left;
	transition: border-color 160ms ease, background-color 160ms ease;
}

.rule-toggle:hover,
.rule-toggle:focus-visible,
.rule-section.is-open .rule-toggle {
	border-color: rgba(199, 161, 90, 0.4);
	background: rgba(199, 161, 90, 0.07);
}

.rule-number {
	color: #a78344;
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.rule-toggle strong {
	display: block;
	color: var(--color-ivory);
	font-family: var(--font-serif);
	font-size: clamp(1.38rem, 2.3vw, 1.75rem);
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.15;
	text-transform: uppercase;
}

.rule-toggle em {
	display: block;
	margin-top: 6px;
	color: #827761;
	font-family: var(--font-body);
	font-size: 0.9rem;
	font-style: normal;
	line-height: 1.4;
}

.rule-toggle i {
	color: var(--color-gold);
	font-family: Georgia, serif;
	font-size: 1.4rem;
	font-style: normal;
	line-height: 1;
}

.rule-body {
	margin: -4px 0 16px;
	padding: 24px 30px;
	border-left: 1px solid rgba(199, 161, 90, 0.25);
	color: var(--color-parchment);
	background: rgba(0, 0, 0, 0.16);
	font-family: var(--font-serif);
	font-size: 1.04rem;
	line-height: 1.75;
}

.rule-body p {
	margin: 0 0 16px;
}

.rule-body p:last-child {
	margin-bottom: 0;
}

.rule-body ul {
	margin: 0 0 16px;
	padding-left: 20px;
}

.rule-body li {
	margin-bottom: 12px;
}

.rule-body strong {
	color: var(--color-ivory);
	font-weight: 500;
}

body.reveal-ready .rules-section .eyebrow,
body.reveal-ready .rules-section h2,
body.reveal-ready .rules-intro > p,
body.reveal-ready .rulebook-note,
body.reveal-ready .rules-actions,
body.reveal-ready .rules-button-note,
body.reveal-ready .rulebook-hero,
body.reveal-ready .rules-sidebar,
body.reveal-ready .rulebook-panel {
	opacity: 0;
	transform: translateY(16px);
}

body.reveal-ready .rulebook-hero {
	filter: brightness(0.45);
}

body.reveal-ready .rules-section.is-visible .eyebrow,
body.reveal-ready .rules-section.is-visible h2,
body.reveal-ready .rules-section.is-visible .rules-intro > p,
body.reveal-ready .rules-section.is-visible .rulebook-note,
body.reveal-ready .rules-section.is-visible .rules-actions,
body.reveal-ready .rules-section.is-visible .rules-button-note,
body.reveal-ready .rules-section.is-visible .rulebook-hero,
body.reveal-ready .rules-section.is-visible .rules-sidebar,
body.reveal-ready .rules-section.is-visible .rulebook-panel {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 760ms ease, transform 920ms cubic-bezier(0.19, 1, 0.22, 1), filter 900ms ease;
}

body.reveal-ready .rules-section.is-visible .rulebook-hero {
	filter: brightness(1);
}

body.reveal-ready .rules-section.is-visible .eyebrow {
	transition-delay: 80ms;
}

body.reveal-ready .rules-section.is-visible h2 {
	transition-delay: 180ms;
}

body.reveal-ready .rules-section.is-visible .rules-intro > p:nth-child(1) {
	transition-delay: 300ms;
}

body.reveal-ready .rules-section.is-visible .rules-intro > p:nth-child(2) {
	transition-delay: 390ms;
}

body.reveal-ready .rules-section.is-visible .rules-intro > p:nth-child(3) {
	transition-delay: 480ms;
}

body.reveal-ready .rules-section.is-visible .rules-intro > p:nth-child(4) {
	transition-delay: 570ms;
}

body.reveal-ready .rules-section.is-visible .rules-intro > p:nth-child(5),
body.reveal-ready .rules-section.is-visible .rulebook-note {
	transition-delay: 660ms;
}

body.reveal-ready .rules-section.is-visible .rules-actions,
body.reveal-ready .rules-section.is-visible .rules-button-note {
	transition-delay: 760ms;
}

body.reveal-ready .rules-section.is-visible .rulebook-hero {
	transition-delay: 880ms;
}

body.reveal-ready .rules-section.is-visible .rules-sidebar {
	transition-delay: 1040ms;
}

body.reveal-ready .rules-section.is-visible .rulebook-panel {
	transition-delay: 1120ms;
}

body.reveal-ready .rules-sidebar,
body.reveal-ready .rules-section.is-visible .rules-sidebar {
	transform: none;
}

/* Strategy Guide: a tactical war-room section between law and object. */
.strategy-section {
	position: relative;
	padding: 120px 24px 140px;
	overflow: hidden;
	background:
		radial-gradient(circle at 50% 20%, rgba(199, 161, 90, 0.07), transparent 28rem),
		radial-gradient(circle at 60% 58%, rgba(17, 24, 39, 0.12), transparent 34rem),
		linear-gradient(180deg, #080706 0%, #0d0907 48%, #050404 100%);
	isolation: isolate;
}

.strategy-section::before {
	position: absolute;
	inset: 0;
	z-index: -2;
	content: "";
	background:
		radial-gradient(circle, rgba(199, 161, 90, 0.1) 0 1px, transparent 1.5px),
		linear-gradient(38deg, transparent 38%, rgba(199, 161, 90, 0.04) 38.1%, transparent 38.3%),
		linear-gradient(125deg, transparent 62%, rgba(232, 220, 194, 0.03) 62.1%, transparent 62.3%);
	background-size: 20rem 20rem, 22rem 22rem, 28rem 28rem;
	opacity: 0.56;
}

.strategy-header {
	width: min(820px, 100%);
	margin: 0 auto;
	text-align: center;
}

.strategy-header .eyebrow,
.strategy-header h2 {
	text-align: center;
}

.strategy-header h2 {
	color: var(--color-ivory);
	font-size: clamp(3.25rem, 6vw, 4.5rem);
	letter-spacing: 0.05em;
	line-height: 1.05;
	text-shadow: 0 20px 52px rgba(0, 0, 0, 0.5);
}

.strategy-intro {
	margin-top: 30px;
	color: var(--color-parchment);
	font-family: var(--font-serif);
	font-size: clamp(1.1rem, 1.42vw, 1.24rem);
	line-height: 1.75;
}

.strategy-intro p {
	margin: 0 0 16px;
}

.strategy-poem {
	margin: 30px auto;
	color: var(--color-ivory);
	font-family: var(--font-serif);
	font-size: clamp(1.22rem, 2.2vw, 1.75rem);
	font-style: italic;
	line-height: 1.8;
}

.strategy-poem p {
	margin: 0;
}

.strategy-hero {
	position: relative;
	width: min(var(--site-medium-max), 100%);
	min-height: clamp(300px, 35vw, 380px);
	margin: 56px auto 54px;
	border: 1px solid rgba(199, 161, 90, 0.22);
	border-radius: 14px;
	background:
		linear-gradient(rgba(5, 4, 4, 0.26), rgba(5, 4, 4, 0.55)),
		url("assets/n1.png") center / cover no-repeat,
		radial-gradient(circle at 34% 34%, rgba(199, 161, 90, 0.16), transparent 18rem),
		linear-gradient(145deg, rgba(52, 29, 19, 0.9), rgba(7, 5, 4, 0.96));
	box-shadow: 0 30px 100px rgba(0, 0, 0, 0.62), inset 0 0 80px rgba(0, 0, 0, 0.46);
	overflow: hidden;
}

.strategy-hero::before {
	position: absolute;
	inset: 0;
	content: "";
	background: radial-gradient(ellipse at center, transparent 45%, rgba(0, 0, 0, 0.66) 100%);
	pointer-events: none;
}

.strategy-hero-label {
	position: absolute;
	left: 28px;
	bottom: 28px;
	z-index: 2;
	padding: 14px 18px;
	border: 1px solid rgba(199, 161, 90, 0.22);
	border-radius: 6px;
	background: rgba(7, 6, 6, 0.76);
}

.strategy-hero-label strong {
	display: block;
	margin-bottom: 6px;
	color: var(--color-gold);
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.strategy-hero-label em {
	color: var(--color-ivory);
	font-family: var(--font-serif);
	font-size: 1rem;
}

.strategy-model,
.strategy-promise,
.strategy-list,
.phase-playbook,
.strategy-summary {
	width: min(var(--site-max), 100%);
	margin-right: auto;
	margin-left: auto;
}

.strategy-model h3,
.strategy-summary h3 {
	margin: 0 0 24px;
	color: var(--color-gold);
	font-family: var(--font-body);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-align: center;
	text-transform: uppercase;
}

.strategy-model-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.strategy-model-cards article,
.phase-playbook article {
	padding: 30px;
	border: 1px solid rgba(199, 161, 90, 0.18);
	border-radius: 12px;
	background: linear-gradient(180deg, rgba(22, 15, 11, 0.96), rgba(8, 7, 6, 0.99));
	box-shadow: 0 26px 80px rgba(0, 0, 0, 0.48);
	text-align: center;
}

.strategy-model-cards img {
	display: block;
	width: 100%;
	height: clamp(150px, 16vw, 210px);
	object-fit: cover;
	margin-bottom: 20px;
	border: 1px solid rgba(199, 161, 90, 0.16);
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.18);
	filter: saturate(0.92) contrast(1.02) brightness(0.9);
}

.strategy-model-cards h4,
.phase-playbook h3 {
	margin: 0 0 12px;
	color: var(--color-ivory);
	font-family: var(--font-title);
	font-size: clamp(1.25rem, 2vw, 1.55rem);
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.strategy-model-cards p,
.phase-playbook p,
.strategy-summary p,
.strategy-summary li {
	color: var(--color-parchment);
	font-family: var(--font-serif);
	font-size: 1.08rem;
	line-height: 1.68;
}

.strategy-promise {
	margin-top: 42px;
	margin-bottom: 36px;
	color: var(--color-ivory);
	font-family: var(--font-serif);
	font-size: clamp(1.28rem, 2vw, 1.55rem);
	font-style: italic;
	line-height: 1.7;
	text-align: center;
}

.strategy-promise p {
	margin: 0 0 10px;
}

.strategy-list {
	display: grid;
	gap: 14px;
}

.strategy-card {
	border: 1px solid rgba(199, 161, 90, 0.16);
	border-radius: 12px;
	background: rgba(232, 220, 194, 0.025);
	box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
	overflow: hidden;
}

.strategy-card.is-open {
	border-color: rgba(199, 161, 90, 0.55);
	background: linear-gradient(180deg, rgba(21, 15, 11, 0.98), rgba(8, 7, 6, 0.99));
}

.strategy-toggle {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 18px;
	align-items: center;
	width: 100%;
	padding: 24px 28px;
	border: 0;
	color: inherit;
	background: transparent;
	cursor: pointer;
	text-align: left;
}

.strategy-number {
	color: #a78344;
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
}

.strategy-toggle strong {
	display: block;
	color: var(--color-ivory);
	font-family: var(--font-serif);
	font-size: clamp(1.35rem, 2.4vw, 2rem);
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.strategy-toggle em {
	display: block;
	margin-top: 6px;
	color: var(--color-gold);
	font-family: var(--font-serif);
	font-size: 1.05rem;
	font-style: italic;
}

.strategy-front-rule {
	display: block;
	margin-top: 12px;
	color: var(--color-ivory);
	font-family: var(--font-serif);
	font-size: 0.98rem;
	font-style: italic;
	line-height: 1.45;
	opacity: 0.9;
}

.strategy-toggle i {
	color: var(--color-gold);
	font-family: Georgia, serif;
	font-size: 1.4rem;
	font-style: normal;
}

.strategy-body {
	padding: 0 28px 28px;
	overflow: hidden;
	transition: max-height 340ms ease, opacity 260ms ease;
}

.strategy-diagram {
	min-height: 210px;
	margin: 0 0 22px;
	border: 1px solid rgba(199, 161, 90, 0.16);
	border-radius: 10px;
	background:
		linear-gradient(rgba(8, 7, 6, 0.1), rgba(8, 7, 6, 0.24)),
		var(--strategy-diagram) center / contain no-repeat,
		rgba(0, 0, 0, 0.14);
}

.strategy-body p {
	margin: 0 0 14px;
	color: var(--color-parchment);
	font-family: var(--font-serif);
	font-size: 1.08rem;
	line-height: 1.7;
}

.strategy-card-manual .strategy-body {
	padding-bottom: 36px;
}

.strategy-lesson {
	max-width: 980px;
	margin: 0 auto;
}

.strategy-lesson-header {
	margin: 6px 0 30px;
	padding: 28px;
	border: 1px solid rgba(199, 161, 90, 0.18);
	border-radius: 12px;
	background:
		radial-gradient(circle at 18% 24%, rgba(199, 161, 90, 0.08), transparent 18rem),
		rgba(232, 220, 194, 0.025);
	text-align: center;
}

.strategy-lesson-header h3 {
	margin: 0 0 10px;
	color: var(--color-ivory);
	font-family: var(--font-title);
	font-size: clamp(2rem, 4vw, 3.15rem);
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.08;
	text-transform: uppercase;
}

.strategy-lesson-header p,
.strategy-manual-line {
	color: var(--color-gold) !important;
	font-family: var(--font-serif);
	font-size: clamp(1.15rem, 1.8vw, 1.35rem) !important;
	font-style: italic;
	line-height: 1.55 !important;
}

.strategy-lesson-section {
	margin-top: 32px;
	padding-top: 30px;
	border-top: 1px solid rgba(199, 161, 90, 0.12);
}

.strategy-card.is-open .strategy-lesson-section,
.strategy-card.is-open .strategy-comparison,
.strategy-card.is-open .strategy-lesson-header {
	animation: strategy-manual-fade 420ms ease both;
}

.strategy-lesson-section h4,
.strategy-comparison h4,
.strategy-diagram-label {
	margin: 0 0 16px;
	color: var(--color-gold);
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	line-height: 1.35;
	text-transform: uppercase;
}

.strategy-question-pair,
.strategy-comparison,
.strategy-decision-box {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin: 24px 0;
}

.strategy-question-pair p,
.strategy-comparison > div,
.strategy-decision-box {
	padding: 20px;
	border: 1px solid rgba(199, 161, 90, 0.18);
	border-radius: 10px;
	background: rgba(199, 161, 90, 0.045);
}

.strategy-question-pair strong {
	color: var(--color-ivory);
	font-weight: 500;
}

.strategy-comparison {
	margin-top: 32px;
	margin-bottom: 34px;
}

.strategy-comparison > div {
	background: linear-gradient(180deg, rgba(22, 15, 11, 0.84), rgba(8, 7, 6, 0.92));
}

.strategy-comparison p,
.strategy-decision-box p {
	margin-bottom: 8px;
}

.strategy-manual-list {
	display: grid;
	gap: 8px;
	margin: 0 0 18px;
	padding-left: 22px;
	color: var(--color-parchment);
	font-family: var(--font-serif);
	font-size: 1.08rem;
	line-height: 1.65;
}

.strategy-manual-quote {
	margin: 24px 0;
	padding: 22px 24px;
	border-left: 2px solid rgba(199, 161, 90, 0.46);
	background: rgba(199, 161, 90, 0.035);
}

.strategy-manual-quote p {
	margin-bottom: 4px;
	color: var(--color-ivory);
	font-style: italic;
}

.strategy-row-diagram {
	display: grid;
	grid-template-columns: repeat(4, minmax(64px, 86px));
	justify-content: center;
	gap: 14px;
	margin: 10px 0 24px;
	padding: 20px;
	border: 1px solid rgba(199, 161, 90, 0.18);
	border-radius: 12px;
	background:
		linear-gradient(90deg, rgba(199, 161, 90, 0.05) 1px, transparent 1px),
		linear-gradient(180deg, rgba(199, 161, 90, 0.05) 1px, transparent 1px),
		rgba(0, 0, 0, 0.18);
	background-size: 58px 58px;
}

.manual-die {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: 1;
	border: 1px solid rgba(199, 161, 90, 0.42);
	border-radius: 13px;
	color: #f0e4c9;
	background:
		radial-gradient(circle at 28% 24%, rgba(255, 235, 178, 0.12), transparent 34%),
		linear-gradient(145deg, #4b2a17, #21120d 64%, #0a0706);
	box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.05), inset -8px -12px 22px rgba(0, 0, 0, 0.42), 0 14px 28px rgba(0, 0, 0, 0.38);
}

.manual-die::before {
	position: absolute;
	inset: 8px;
	content: "";
	border: 1px solid rgba(232, 220, 194, 0.12);
	border-radius: 9px;
}

.manual-die-crown {
	border-color: rgba(199, 161, 90, 0.62);
	box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.08), inset -8px -12px 22px rgba(0, 0, 0, 0.42), 0 0 22px rgba(199, 161, 90, 0.12), 0 14px 28px rgba(0, 0, 0, 0.38);
}

.manual-die-symbol {
	position: relative;
	z-index: 2;
	color: var(--color-ivory);
	font-family: Georgia, serif;
	font-size: clamp(1.8rem, 4vw, 2.35rem);
	line-height: 1;
	text-shadow: 0 0 14px rgba(199, 161, 90, 0.2);
}

.manual-die-halo {
	position: absolute;
	z-index: 1;
	width: 48%;
	height: 48%;
	border: 2px solid rgba(199, 161, 90, 0.5);
}

.manual-dots {
	position: absolute;
	right: 10px;
	bottom: 7px;
	z-index: 3;
	color: var(--color-gold);
	font-size: 0.8rem;
	letter-spacing: 0.03em;
}

.manual-die-empty {
	border-style: dashed;
	border-color: rgba(199, 161, 90, 0.28);
	background: rgba(199, 161, 90, 0.035);
}

.manual-die-empty::after {
	content: "";
	position: absolute;
	inset: 21%;
	border: 1px dashed rgba(232, 220, 194, 0.16);
	border-radius: 8px;
}

.strategy-engine-row:hover .manual-die-empty {
	border-color: rgba(199, 161, 90, 0.78);
	box-shadow: 0 0 26px rgba(199, 161, 90, 0.22);
}

.strategy-rush-row:hover .manual-die {
	border-color: rgba(199, 161, 90, 0.74);
	box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.08), inset -8px -12px 22px rgba(0, 0, 0, 0.42), 0 0 24px rgba(199, 161, 90, 0.18), 0 14px 28px rgba(0, 0, 0, 0.38);
}

.strategy-seal-pivot-diagram {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin: 10px 0 24px;
}

.strategy-seal-pivot-diagram .strategy-row-diagram {
	margin-bottom: 0;
}

.strategy-diagram-subtitle,
.strategy-invalid-label {
	margin: 0 0 10px;
	color: #827761;
	font-family: var(--font-serif);
	font-size: 0.98rem;
	font-style: italic;
	line-height: 1.45;
	text-align: center;
}

.strategy-seal-valid-row {
	border-color: rgba(199, 161, 90, 0.24);
}

.strategy-seal-valid-row .manual-die-match,
.strategy-seal-complete-row .manual-die-new-crown {
	box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.07), inset -8px -12px 22px rgba(0, 0, 0, 0.42), 0 0 18px rgba(199, 161, 90, 0.12), 0 14px 28px rgba(0, 0, 0, 0.38);
}

.strategy-seal-valid-row:hover .manual-die-match,
.strategy-seal-valid-row:hover .manual-die-new-crown {
	border-color: rgba(199, 161, 90, 0.78);
	box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.09), inset -8px -12px 22px rgba(0, 0, 0, 0.42), 0 0 26px rgba(199, 161, 90, 0.22), 0 14px 28px rgba(0, 0, 0, 0.38);
}

.strategy-seal-invalid-row {
	border-color: rgba(170, 82, 68, 0.45);
	background:
		linear-gradient(90deg, rgba(170, 82, 68, 0.06) 1px, transparent 1px),
		linear-gradient(180deg, rgba(170, 82, 68, 0.06) 1px, transparent 1px),
		rgba(0, 0, 0, 0.18);
	background-size: 58px 58px;
}

.strategy-seal-invalid-row .manual-die-mismatch {
	border-color: rgba(170, 82, 68, 0.5);
}

.strategy-seal-invalid-row:hover .manual-die-mismatch .manual-dots {
	animation: strategy-dot-warning 680ms ease both;
}

.strategy-invalid-label {
	color: #d5a08d;
	text-align: left;
}

.strategy-seal-check-box p:first-child,
.strategy-seal-check-box p:last-child {
	color: var(--color-gold);
}

.strategy-crown-ledger {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 1px;
	margin: 22px 0 24px;
	border: 1px solid rgba(199, 161, 90, 0.22);
	border-radius: 12px;
	background: rgba(199, 161, 90, 0.18);
	overflow: hidden;
}

.strategy-crown-ledger div {
	padding: 20px 16px;
	background:
		linear-gradient(180deg, rgba(22, 15, 11, 0.96), rgba(8, 7, 6, 0.99));
	text-align: center;
}

.strategy-crown-ledger strong {
	display: block;
	margin-bottom: 8px;
	color: var(--color-gold);
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.strategy-crown-ledger p {
	margin: 0;
	color: var(--color-parchment);
	font-size: 0.98rem;
	line-height: 1.45;
}

.strategy-starvation-board {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
	gap: 18px;
	margin: 10px 0 24px;
}

.strategy-starvation-board .strategy-row-diagram,
.strategy-starvation-board .strategy-pool-mini {
	margin-bottom: 0;
}

.strategy-crown-pressure-row {
	border-color: rgba(199, 161, 90, 0.28);
}

.strategy-pool-mini {
	display: grid;
	grid-template-columns: repeat(3, minmax(56px, 76px));
	justify-content: center;
	gap: 12px;
	padding: 20px;
	border: 1px solid rgba(199, 161, 90, 0.14);
	border-radius: 12px;
	background:
		linear-gradient(90deg, rgba(199, 161, 90, 0.04) 1px, transparent 1px),
		linear-gradient(180deg, rgba(199, 161, 90, 0.04) 1px, transparent 1px),
		rgba(0, 0, 0, 0.14);
	background-size: 58px 58px;
}

.strategy-pool-mini .manual-die {
	opacity: 0.72;
}

.strategy-crown-pressure-row .manual-die-starving-crown,
.strategy-crown-pressure-row .manual-die-seal-slot {
	box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.07), inset -8px -12px 22px rgba(0, 0, 0, 0.42), 0 0 18px rgba(199, 161, 90, 0.12), 0 14px 28px rgba(0, 0, 0, 0.38);
}

.strategy-starvation-board:hover .manual-die-starving-crown,
.strategy-starvation-board:hover .manual-die-seal-slot {
	border-color: rgba(199, 161, 90, 0.78);
	box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.09), inset -8px -12px 22px rgba(0, 0, 0, 0.42), 0 0 26px rgba(199, 161, 90, 0.22), 0 14px 28px rgba(0, 0, 0, 0.38);
}

.strategy-four-crown-invalid-row {
	border-color: rgba(170, 82, 68, 0.45);
	background:
		linear-gradient(90deg, rgba(170, 82, 68, 0.06) 1px, transparent 1px),
		linear-gradient(180deg, rgba(170, 82, 68, 0.06) 1px, transparent 1px),
		rgba(0, 0, 0, 0.18);
	background-size: 58px 58px;
}

.strategy-four-crown-invalid-row:hover .manual-die-crown {
	opacity: 0.62;
	filter: saturate(0.72);
}

.strategy-four-crown-invalid-row:hover + .strategy-invalid-label {
	color: #efc0ad;
}

.strategy-crown-test-box p:first-child,
.strategy-crown-test-box p:last-child {
	color: var(--color-gold);
}

.strategy-clean-foundation-row {
	border-color: rgba(199, 161, 90, 0.28);
}

.strategy-clean-foundation-row .manual-die-clean,
.strategy-clean-foundation-row .manual-die-future-slot {
	box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.07), inset -8px -12px 22px rgba(0, 0, 0, 0.42), 0 0 18px rgba(199, 161, 90, 0.12), 0 14px 28px rgba(0, 0, 0, 0.38);
}

.strategy-clean-foundation-row:hover .manual-die-future-slot {
	border-color: rgba(199, 161, 90, 0.78);
	box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.09), inset -8px -12px 22px rgba(0, 0, 0, 0.42), 0 0 26px rgba(199, 161, 90, 0.24), 0 14px 28px rgba(0, 0, 0, 0.38);
}

.strategy-duplicate-shape-row,
.strategy-duplicate-halo-row,
.strategy-dot-danger-row {
	border-color: rgba(170, 82, 68, 0.45);
	background:
		linear-gradient(90deg, rgba(170, 82, 68, 0.06) 1px, transparent 1px),
		linear-gradient(180deg, rgba(170, 82, 68, 0.06) 1px, transparent 1px),
		rgba(0, 0, 0, 0.18);
	background-size: 58px 58px;
}

.strategy-duplicate-shape-row .manual-die-repeat-shape,
.strategy-duplicate-halo-row .manual-die-repeat-halo {
	border-color: rgba(170, 82, 68, 0.5);
}

.strategy-duplicate-shape-row:hover .manual-die-repeat-shape .manual-die-symbol,
.strategy-duplicate-halo-row:hover .manual-die-repeat-halo .manual-die-halo {
	animation: strategy-dot-warning 680ms ease both;
}

.strategy-dot-direction {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin: 22px 0 24px;
}

.strategy-dot-card {
	padding: 18px;
	border: 1px solid rgba(199, 161, 90, 0.18);
	border-radius: 12px;
	background: rgba(199, 161, 90, 0.035);
}

.strategy-dot-card h5 {
	margin: 0 0 12px;
	color: var(--color-gold);
	font-family: var(--font-body);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.strategy-dot-card p {
	margin-bottom: 0;
	font-size: 0.98rem;
}

.strategy-dot-mini-row {
	grid-template-columns: repeat(3, minmax(52px, 70px));
	justify-content: flex-start;
	min-height: auto;
	margin: 0 0 14px;
	padding: 14px;
}

.strategy-dot-matching:hover .manual-dots,
.strategy-dot-different:hover .manual-dots,
.strategy-dot-danger:hover .manual-dots {
	animation: strategy-dot-warning 680ms ease both;
}

.strategy-dot-matching {
	border-color: rgba(199, 161, 90, 0.28);
}

.strategy-dot-different {
	border-color: rgba(199, 161, 90, 0.22);
}

.strategy-dot-danger {
	border-color: rgba(170, 82, 68, 0.45);
}

.strategy-row-comparison strong {
	color: var(--color-ivory);
	font-weight: 500;
}

.strategy-clean-test-box p:first-child,
.strategy-clean-test-box p:last-child,
.strategy-clean-decision-box p:first-child {
	color: var(--color-gold);
}

.strategy-recast-flow,
.strategy-recast-conversion {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(160px, 0.55fr) minmax(0, 1.2fr);
	gap: 18px;
	align-items: start;
	margin: 10px 0 24px;
}

.strategy-recast-flow .strategy-row-diagram,
.strategy-recast-conversion .strategy-row-diagram,
.strategy-recast-bad .strategy-row-diagram,
.strategy-recast-flow .strategy-pool-mini,
.strategy-recast-conversion .strategy-pool-mini,
.strategy-recast-bad .strategy-pool-mini {
	margin-bottom: 0;
}

.strategy-surgical-problem,
.strategy-recast-before-row .manual-die-surgical-problem,
.strategy-recast-conversion-before .manual-die-surgical-problem {
	border-color: rgba(170, 82, 68, 0.55);
	box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.05), inset -8px -12px 22px rgba(0, 0, 0, 0.42), 0 0 18px rgba(170, 82, 68, 0.14), 0 14px 28px rgba(0, 0, 0, 0.38);
}

.strategy-recast-pool .manual-die-replacement,
.strategy-recast-pool .manual-die-visible-finisher {
	border-color: rgba(199, 161, 90, 0.62);
	box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.07), inset -8px -12px 22px rgba(0, 0, 0, 0.42), 0 0 22px rgba(199, 161, 90, 0.16), 0 14px 28px rgba(0, 0, 0, 0.38);
	opacity: 1;
}

.strategy-recast-after-row,
.strategy-recast-conversion-after {
	border-color: rgba(199, 161, 90, 0.32);
}

.strategy-recast-after-row .manual-die-clean,
.strategy-recast-conversion-after .manual-die-match {
	box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.08), inset -8px -12px 22px rgba(0, 0, 0, 0.42), 0 0 20px rgba(199, 161, 90, 0.16), 0 14px 28px rgba(0, 0, 0, 0.38);
}

.strategy-recast-flow:hover .manual-die-surgical-problem,
.strategy-recast-conversion:hover .manual-die-surgical-problem {
	opacity: 0.55;
	filter: saturate(0.7);
}

.strategy-recast-flow:hover .manual-die-replacement,
.strategy-recast-flow:hover .strategy-recast-after-row .manual-die,
.strategy-recast-conversion:hover .manual-die-replacement,
.strategy-recast-conversion:hover .strategy-recast-conversion-after .manual-die-match {
	border-color: rgba(199, 161, 90, 0.78);
	box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.09), inset -8px -12px 22px rgba(0, 0, 0, 0.42), 0 0 26px rgba(199, 161, 90, 0.22), 0 14px 28px rgba(0, 0, 0, 0.38);
}

.strategy-valid-label {
	color: var(--color-gold);
}

.strategy-tool-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin: 34px 0 28px;
}

.strategy-tool-grid div {
	padding: 18px;
	border: 1px solid rgba(199, 161, 90, 0.18);
	border-radius: 10px;
	background: rgba(199, 161, 90, 0.035);
}

.strategy-tool-grid h4 {
	margin: 0 0 10px;
	color: var(--color-gold);
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.strategy-tool-grid p {
	margin-bottom: 0;
	font-size: 1rem;
}

.strategy-recast-bad {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(180px, 0.65fr);
	gap: 18px;
	margin: 10px 0 12px;
	padding: 18px;
	border: 1px solid rgba(170, 82, 68, 0.45);
	border-radius: 12px;
	background: rgba(170, 82, 68, 0.035);
}

.strategy-recast-bad:hover .manual-die-visible-finisher {
	border-color: rgba(199, 161, 90, 0.85);
	box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.1), inset -8px -12px 22px rgba(0, 0, 0, 0.42), 0 0 28px rgba(199, 161, 90, 0.28), 0 14px 28px rgba(0, 0, 0, 0.38);
}

.strategy-recast-diagnosis-box p:first-child,
.strategy-recast-diagnosis-box p:last-child,
.strategy-recast-decision-box p:first-child,
.strategy-recast-decision-box p:last-child {
	color: var(--color-gold);
}

.strategy-pool-threat-diagram,
.strategy-stir-denial-diagram,
.strategy-bad-denial-diagram {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 18px;
	margin: 10px 0 24px;
}

.strategy-pool-threat-diagram .strategy-row-diagram,
.strategy-stir-denial-diagram .strategy-row-diagram,
.strategy-bad-denial-diagram .strategy-row-diagram {
	margin-bottom: 0;
}

.strategy-market-pool {
	position: relative;
	border-color: rgba(199, 161, 90, 0.2);
}

.strategy-market-pool::before {
	position: absolute;
	left: 12%;
	right: 12%;
	top: 50%;
	height: 1px;
	content: "";
	background: linear-gradient(90deg, transparent, rgba(199, 161, 90, 0.42), transparent);
	pointer-events: none;
}

.manual-die-dangerous-pool,
.manual-die-visible-finisher {
	border-color: rgba(199, 161, 90, 0.7);
	box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.08), inset -8px -12px 22px rgba(0, 0, 0, 0.42), 0 0 24px rgba(199, 161, 90, 0.2), 0 14px 28px rgba(0, 0, 0, 0.38);
}

.manual-die-lesser-temptation {
	border-color: rgba(170, 82, 68, 0.42);
	opacity: 0.78;
}

.strategy-pool-threat-diagram:hover .manual-die-dangerous-pool,
.strategy-pool-threat-diagram:hover .manual-die-target-slot,
.strategy-bad-denial-diagram:hover .manual-die-visible-finisher {
	border-color: rgba(199, 161, 90, 0.86);
	box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.1), inset -8px -12px 22px rgba(0, 0, 0, 0.42), 0 0 30px rgba(199, 161, 90, 0.28), 0 14px 28px rgba(0, 0, 0, 0.38);
}

.strategy-stir-pool {
	position: relative;
	border-color: rgba(199, 161, 90, 0.24);
}

.strategy-stir-pool::after {
	position: absolute;
	inset: 12px;
	content: "";
	border: 1px dashed rgba(199, 161, 90, 0.38);
	border-radius: 50%;
	pointer-events: none;
}

.manual-die-stir-target {
	border-color: rgba(199, 161, 90, 0.45);
}

.strategy-stir-denial-diagram:hover .manual-die-stir-target {
	border-color: rgba(199, 161, 90, 0.78);
	box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.08), inset -8px -12px 22px rgba(0, 0, 0, 0.42), 0 0 24px rgba(199, 161, 90, 0.2), 0 14px 28px rgba(0, 0, 0, 0.38);
}

.strategy-stir-denial-diagram:hover .strategy-stir-pool::after {
	animation: strategy-stir-ring 1200ms linear infinite;
}

.strategy-pool-scan-box p:first-child,
.strategy-market-test-box p:first-child,
.strategy-market-test-box p:last-child {
	color: var(--color-gold);
}

.strategy-timer-stir-diagram,
.strategy-parley-pause-diagram,
.strategy-sabotage-warning {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
	gap: 18px;
	align-items: center;
	margin: 10px 0 24px;
	padding: 18px;
	border: 1px solid rgba(199, 161, 90, 0.18);
	border-radius: 12px;
	background: rgba(0, 0, 0, 0.14);
}

.strategy-parley-pause-diagram {
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

.strategy-sabotage-warning {
	grid-template-columns: minmax(0, 1fr) auto;
	border-color: rgba(170, 82, 68, 0.45);
	background: rgba(170, 82, 68, 0.035);
}

.strategy-timer-stir-diagram .strategy-row-diagram,
.strategy-parley-pause-diagram .strategy-row-diagram,
.strategy-sabotage-warning .strategy-row-diagram {
	margin-bottom: 0;
}

.strategy-hourglass {
	position: relative;
	width: 52px;
	height: 96px;
	border-top: 4px solid rgba(199, 161, 90, 0.82);
	border-bottom: 4px solid rgba(199, 161, 90, 0.82);
	filter: drop-shadow(0 0 16px rgba(199, 161, 90, 0.16));
}

.strategy-hourglass::before {
	position: absolute;
	inset: 8px 9px;
	content: "";
	border: 1px solid rgba(232, 220, 194, 0.3);
	clip-path: polygon(0 0, 100% 0, 58% 50%, 100% 100%, 0 100%, 42% 50%);
}

.strategy-hourglass::after {
	position: absolute;
	left: 50%;
	top: 20px;
	width: 3px;
	height: 54px;
	content: "";
	background: linear-gradient(180deg, rgba(199, 161, 90, 0.88), transparent);
	transform: translateX(-50%);
	animation: strategy-sand-fall 1800ms ease-in-out infinite;
}

.strategy-hourglass-flat {
	transform: rotate(90deg);
	opacity: 0.82;
}

.strategy-hourglass-nearly-empty::after {
	top: 58px;
	height: 18px;
	background: rgba(199, 161, 90, 0.82);
}

.manual-die-offered,
.manual-die-sabotage-target {
	border-color: rgba(199, 161, 90, 0.62);
	box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.07), inset -8px -12px 22px rgba(0, 0, 0, 0.42), 0 0 22px rgba(199, 161, 90, 0.16), 0 14px 28px rgba(0, 0, 0, 0.38);
}

.strategy-timer-stir-diagram:hover .manual-die-stir-target {
	border-color: rgba(199, 161, 90, 0.84);
	box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.09), inset -8px -12px 22px rgba(0, 0, 0, 0.42), 0 0 28px rgba(199, 161, 90, 0.26), 0 14px 28px rgba(0, 0, 0, 0.38);
}

.strategy-timer-stir-diagram:hover .strategy-stir-pool::after {
	animation: strategy-stir-ring 1200ms linear infinite;
}

.strategy-parley-pause-diagram:hover .strategy-hourglass-flat {
	filter: drop-shadow(0 0 22px rgba(199, 161, 90, 0.28));
}

.strategy-sabotage-warning:hover .manual-die-sabotage-target {
	border-color: rgba(170, 82, 68, 0.76);
	box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.06), inset -8px -12px 22px rgba(0, 0, 0, 0.42), 0 0 26px rgba(170, 82, 68, 0.24), 0 14px 28px rgba(0, 0, 0, 0.38);
}

.strategy-timer-check-box p:first-child,
.strategy-timer-rule-box p:first-child,
.strategy-timer-rule-box p:last-child {
	color: var(--color-gold);
}

.strategy-shift-compare-diagram,
.strategy-blessing-bait-diagram,
.strategy-shift-danger-diagram {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin: 10px 0 24px;
}

.strategy-shift-danger-diagram {
	grid-template-columns: 1fr;
	padding: 18px;
	border: 1px solid rgba(170, 82, 68, 0.45);
	border-radius: 12px;
	background: rgba(170, 82, 68, 0.035);
}

.strategy-shift-compare-diagram .strategy-row-diagram,
.strategy-blessing-bait-diagram .strategy-row-diagram,
.strategy-shift-danger-diagram .strategy-row-diagram,
.strategy-safer-shift-row {
	margin-bottom: 0;
}

.manual-die-shift-all,
.manual-die-shift-one,
.manual-die-shift-risk,
.manual-die-repeat-shape {
	position: relative;
}

.manual-die-shift-all::after,
.manual-die-shift-one::after,
.manual-die-shift-risk::after {
	position: absolute;
	top: -12px;
	right: 8px;
	z-index: 4;
	content: "↗";
	color: var(--color-gold);
	font-family: Georgia, serif;
	font-size: 1.15rem;
	text-shadow: 0 0 12px rgba(199, 161, 90, 0.32);
}

.strategy-own-shift-panel:hover .manual-die-shift-all,
.strategy-opponent-shift-panel:hover .manual-die-shift-one,
.strategy-shift-danger-diagram:hover .manual-die-shift-risk {
	border-color: rgba(199, 161, 90, 0.78);
	box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.09), inset -8px -12px 22px rgba(0, 0, 0, 0.42), 0 0 26px rgba(199, 161, 90, 0.22), 0 14px 28px rgba(0, 0, 0, 0.38);
	transform: translateY(-2px) rotate(1deg);
}

.strategy-shift-danger-row {
	border-color: rgba(170, 82, 68, 0.45);
}

.strategy-shift-danger-diagram:hover .strategy-shift-danger-row,
.strategy-blessing-bait-diagram:hover .strategy-blessing-valid-row {
	border-color: rgba(199, 161, 90, 0.55);
	box-shadow: 0 0 26px rgba(199, 161, 90, 0.16);
}

.strategy-blessing-valid-row .manual-die-match {
	border-color: rgba(199, 161, 90, 0.58);
	box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.07), inset -8px -12px 22px rgba(0, 0, 0, 0.42), 0 0 20px rgba(199, 161, 90, 0.16), 0 14px 28px rgba(0, 0, 0, 0.38);
}

.strategy-blessing-bait-diagram:hover > div:first-child {
	opacity: 0.72;
}

.strategy-safer-shift-row {
	border-color: rgba(199, 161, 90, 0.18);
}

.strategy-shift-risk-box p:first-child,
.strategy-shift-risk-box p:last-child,
.strategy-shift-decision-box p:first-child,
.strategy-shift-decision-box p:last-child {
	color: var(--color-gold);
}

.strategy-parley-main-diagram,
.strategy-politics-diagram,
.strategy-dangerous-parley {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	gap: 18px;
	align-items: center;
	margin: 10px 0 24px;
	padding: 18px;
	border: 1px solid rgba(199, 161, 90, 0.18);
	border-radius: 12px;
	background: rgba(0, 0, 0, 0.14);
}

.strategy-politics-diagram {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.strategy-dangerous-parley {
	grid-template-columns: auto minmax(0, 1fr);
	border-color: rgba(170, 82, 68, 0.45);
	background: rgba(170, 82, 68, 0.035);
}

.strategy-parley-main-diagram .strategy-row-diagram,
.strategy-dangerous-parley .strategy-row-diagram {
	margin-bottom: 0;
}

.strategy-exchange-line {
	position: relative;
	width: 74px;
	height: 2px;
	background: linear-gradient(90deg, rgba(199, 161, 90, 0.12), rgba(199, 161, 90, 0.62), rgba(199, 161, 90, 0.12));
}

.strategy-exchange-line::before,
.strategy-exchange-line::after {
	position: absolute;
	top: 50%;
	content: "";
	width: 9px;
	height: 9px;
	border-top: 1px solid rgba(199, 161, 90, 0.72);
	border-right: 1px solid rgba(199, 161, 90, 0.72);
}

.strategy-exchange-line::before {
	left: -2px;
	transform: translateY(-50%) rotate(-135deg);
}

.strategy-exchange-line::after {
	right: -2px;
	transform: translateY(-50%) rotate(45deg);
}

.manual-die-requested,
.strategy-parley-main-diagram .manual-die-offered,
.strategy-dangerous-parley .manual-die-offered {
	border-color: rgba(199, 161, 90, 0.62);
	box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.07), inset -8px -12px 22px rgba(0, 0, 0, 0.42), 0 0 22px rgba(199, 161, 90, 0.16), 0 14px 28px rgba(0, 0, 0, 0.38);
}

.strategy-parley-main-diagram:hover .manual-die-offered {
	transform: translateX(4px);
}

.strategy-parley-main-diagram:hover .manual-die-requested {
	transform: translateX(-4px);
}

.strategy-player-node {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 118px;
	gap: 8px;
	padding: 18px;
	border: 1px solid rgba(199, 161, 90, 0.18);
	border-radius: 12px;
	background: rgba(199, 161, 90, 0.035);
}

.strategy-player-leader {
	transform: scale(1.04);
	opacity: 0.78;
}

.strategy-player-trailer {
	box-shadow: 0 0 18px rgba(199, 161, 90, 0.08);
}

.strategy-score-pile {
	display: block;
	width: 28px;
	height: 38px;
	border: 1px solid rgba(199, 161, 90, 0.42);
	border-radius: 7px;
	background: linear-gradient(145deg, #4b2a17, #21120d 64%, #0a0706);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.34);
}

.strategy-politics-diagram:hover .strategy-player-trailer {
	border-color: rgba(199, 161, 90, 0.58);
	box-shadow: 0 0 24px rgba(199, 161, 90, 0.18);
}

.strategy-politics-diagram:hover .strategy-player-leader {
	opacity: 0.56;
}

.strategy-dangerous-parley:hover .manual-die-offered,
.strategy-dangerous-parley:hover .strategy-row-diagram {
	border-color: rgba(170, 82, 68, 0.7);
	box-shadow: 0 0 24px rgba(170, 82, 68, 0.18);
}

.strategy-parley-equation-box p:first-child,
.strategy-parley-equation-box p:last-child,
.strategy-parley-backup-box p:first-child,
.strategy-parley-backup-box p:last-child,
.strategy-parley-rule-box p:first-child,
.strategy-parley-rule-box p:nth-last-child(-n+2) {
	color: var(--color-gold);
}

.strategy-end-limit-ledger {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.strategy-endgame-clock,
.strategy-phantom-diagram,
.strategy-final-check-diagram,
.strategy-bad-ending-diagram {
	display: grid;
	gap: 18px;
	margin: 10px 0 24px;
	padding: 18px;
	border: 1px solid rgba(199, 161, 90, 0.18);
	border-radius: 12px;
	background: rgba(0, 0, 0, 0.14);
}

.strategy-endgame-clock {
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 0.9fr);
	align-items: center;
}

.strategy-phantom-diagram {
	grid-template-columns: minmax(0, 0.8fr) auto minmax(0, 1fr) auto;
	align-items: center;
}

.strategy-final-check-diagram {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.strategy-bad-ending-diagram {
	grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
	border-color: rgba(170, 82, 68, 0.45);
	background: rgba(170, 82, 68, 0.035);
}

.strategy-endgame-clock .strategy-row-diagram,
.strategy-final-check-diagram .strategy-row-diagram,
.strategy-bad-ending-diagram .strategy-row-diagram,
.strategy-bad-ending-diagram .strategy-pool-mini {
	margin-bottom: 0;
}

.strategy-endgame-pool {
	display: grid;
	grid-template-columns: repeat(4, minmax(52px, 74px));
	gap: 10px;
	justify-content: center;
	padding: 18px;
	border: 1px solid rgba(199, 161, 90, 0.2);
	border-radius: 12px;
	background: rgba(199, 161, 90, 0.035);
}

.strategy-end-limit-marker {
	width: 1px;
	height: 150px;
	background: linear-gradient(180deg, transparent, rgba(199, 161, 90, 0.68), transparent);
	box-shadow: 0 0 18px rgba(199, 161, 90, 0.2);
}

.strategy-score-rows {
	display: grid;
	gap: 12px;
}

.strategy-endgame-clock:hover .strategy-endgame-pool,
.strategy-endgame-clock:hover .strategy-end-limit-marker {
	box-shadow: 0 0 26px rgba(199, 161, 90, 0.2);
}

.strategy-final-check-row {
	border-color: rgba(199, 161, 90, 0.48);
	box-shadow: 0 0 24px rgba(199, 161, 90, 0.16);
}

.strategy-final-check-diagram:hover .strategy-final-check-row,
.strategy-bad-ending-diagram:hover .strategy-final-check-row {
	border-color: rgba(199, 161, 90, 0.78);
	box-shadow: 0 0 30px rgba(199, 161, 90, 0.24);
}

.strategy-phantom-die {
	border-color: rgba(199, 161, 90, 0.72);
}

.strategy-phantom-diagram:hover .strategy-phantom-die {
	transform: translateX(6px);
	box-shadow: 0 0 24px rgba(199, 161, 90, 0.24);
}

.strategy-phantom-callout p:first-child,
.strategy-phantom-callout p:last-child,
.strategy-endgame-rule-box p:first-child {
	color: var(--color-gold);
}

.strategy-leader-trailer-diagram,
.strategy-leader-shift-warning,
.strategy-trailer-parley-diagram,
.strategy-row-size-diagram {
	display: grid;
	gap: 18px;
	margin: 10px 0 24px;
	padding: 18px;
	border: 1px solid rgba(199, 161, 90, 0.18);
	border-radius: 12px;
	background: rgba(0, 0, 0, 0.14);
}

.strategy-leader-trailer-diagram {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.strategy-leader-shift-warning {
	grid-template-columns: auto minmax(0, 1fr);
	border-color: rgba(170, 82, 68, 0.45);
	background: rgba(170, 82, 68, 0.035);
}

.strategy-trailer-parley-diagram {
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 0.55fr);
	align-items: center;
}

.strategy-row-size-diagram {
	grid-template-columns: minmax(0, 0.6fr) minmax(0, 1fr) minmax(0, 0.6fr) minmax(0, 1.2fr);
	align-items: center;
}

.strategy-role-side {
	position: relative;
	display: grid;
	gap: 14px;
	padding: 18px;
	border: 1px solid rgba(199, 161, 90, 0.18);
	border-radius: 14px;
}

.strategy-leader-side {
	box-shadow: inset 0 0 0 1px rgba(199, 161, 90, 0.08), 0 0 22px rgba(199, 161, 90, 0.08);
}

.strategy-trailer-side {
	border-color: rgba(170, 82, 68, 0.24);
	box-shadow: inset 0 0 0 1px rgba(170, 82, 68, 0.08), 0 0 22px rgba(170, 82, 68, 0.08);
}

.strategy-leader-trailer-diagram:hover .strategy-leader-side {
	box-shadow: inset 0 0 0 1px rgba(199, 161, 90, 0.22), 0 0 28px rgba(199, 161, 90, 0.18);
}

.strategy-leader-trailer-diagram:hover .strategy-trailer-side {
	box-shadow: inset 0 0 0 1px rgba(170, 82, 68, 0.2), 0 0 28px rgba(170, 82, 68, 0.16);
}

.strategy-leader-shift-warning:hover .strategy-shift-danger-row {
	border-color: rgba(199, 161, 90, 0.72);
	box-shadow: 0 0 28px rgba(199, 161, 90, 0.22);
}

.strategy-trailer-parley-diagram:hover .manual-die-requested {
	border-color: rgba(199, 161, 90, 0.82);
	box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.1), inset -8px -12px 22px rgba(0, 0, 0, 0.42), 0 0 28px rgba(199, 161, 90, 0.26), 0 14px 28px rgba(0, 0, 0, 0.38);
}

.strategy-score-gap-guide {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.strategy-tiebreak-favored {
	border-color: rgba(199, 161, 90, 0.52);
	box-shadow: 0 0 22px rgba(199, 161, 90, 0.14);
}

.strategy-row-size-diagram:hover .strategy-tiebreak-favored {
	box-shadow: 0 0 28px rgba(199, 161, 90, 0.24);
}

.strategy-position-question-box p:first-child {
	color: var(--color-gold);
}

.strategy-turn-hierarchy {
	display: grid;
	gap: 1px;
	margin: 22px 0 26px;
	padding: 0;
	border: 1px solid rgba(199, 161, 90, 0.22);
	border-radius: 12px;
	background: rgba(199, 161, 90, 0.18);
	list-style: none;
	overflow: hidden;
}

.strategy-turn-hierarchy li {
	padding: 14px 18px;
	color: var(--color-parchment);
	background: linear-gradient(180deg, rgba(22, 15, 11, 0.96), rgba(8, 7, 6, 0.99));
	font-family: var(--font-serif);
	font-size: 1.04rem;
	line-height: 1.45;
	counter-increment: hierarchy;
}

.strategy-turn-hierarchy {
	counter-reset: hierarchy;
}

.strategy-turn-hierarchy li::before {
	content: counter(hierarchy, decimal-leading-zero) " · ";
	color: var(--color-gold);
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.strategy-decision-system-diagram,
.strategy-system-example {
	display: grid;
	gap: 18px;
	margin: 10px 0 24px;
	padding: 18px;
	border: 1px solid rgba(199, 161, 90, 0.18);
	border-radius: 12px;
	background: rgba(0, 0, 0, 0.14);
}

.strategy-decision-system-diagram {
	position: relative;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	align-items: center;
}

.strategy-system-pool {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(3, minmax(56px, 78px));
	justify-content: center;
	gap: 12px;
	padding: 20px;
	border: 1px solid rgba(199, 161, 90, 0.22);
	border-radius: 12px;
	background: rgba(199, 161, 90, 0.035);
}

.strategy-system-path {
	position: relative;
	min-height: 82px;
	padding-top: 52px;
	text-align: center;
}

.strategy-system-path::before {
	position: absolute;
	left: 50%;
	top: 0;
	width: 1px;
	height: 48px;
	content: "";
	background: rgba(199, 161, 90, 0.35);
	box-shadow: 0 0 12px rgba(199, 161, 90, 0.12);
}

.strategy-system-path span {
	color: var(--color-gold);
	font-family: var(--font-body);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.strategy-decision-system-diagram:hover .strategy-system-path::before {
	animation: strategy-path-glow 1600ms ease-in-out infinite;
}

.strategy-decision-system-diagram:hover .strategy-path-build::before {
	animation-delay: 160ms;
}

.strategy-decision-system-diagram:hover .strategy-path-deny::before {
	animation-delay: 320ms;
}

.strategy-decision-system-diagram:hover .strategy-path-pressure::before {
	animation-delay: 480ms;
}

.strategy-decision-system-diagram:hover .strategy-path-close::before {
	animation-delay: 640ms;
}

.strategy-purpose-grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.strategy-turn-type-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.strategy-system-example {
	grid-template-columns: minmax(0, 1fr) minmax(180px, 0.55fr);
	align-items: center;
}

.strategy-system-close-example {
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 0.85fr);
}

.strategy-system-example .strategy-row-diagram,
.strategy-system-example .strategy-pool-mini {
	margin-bottom: 0;
}

.strategy-system-example:hover .manual-die-visible-finisher,
.strategy-system-example:hover .manual-die-dangerous-pool,
.strategy-system-example:hover .manual-die-target-slot,
.strategy-system-close-example:hover .strategy-end-limit-marker {
	border-color: rgba(199, 161, 90, 0.82);
	box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.09), inset -8px -12px 22px rgba(0, 0, 0, 0.42), 0 0 26px rgba(199, 161, 90, 0.22), 0 14px 28px rgba(0, 0, 0, 0.38);
}

.strategy-before-timer-box p:first-child,
.strategy-system-rule-box p:first-child,
.strategy-system-rule-box p:nth-last-child(-n+2) {
	color: var(--color-gold);
}

@keyframes strategy-path-glow {
	0%, 100% {
		opacity: 0.28;
		box-shadow: 0 0 8px rgba(199, 161, 90, 0.08);
	}

	50% {
		opacity: 1;
		box-shadow: 0 0 20px rgba(199, 161, 90, 0.32);
	}
}

@keyframes strategy-sand-fall {
	0%, 100% {
		opacity: 0.35;
		transform: translateX(-50%) scaleY(0.72);
	}

	50% {
		opacity: 0.9;
		transform: translateX(-50%) scaleY(1);
	}
}

@keyframes strategy-stir-ring {
	from {
		transform: rotate(0deg) scale(1);
	}

	to {
		transform: rotate(360deg) scale(1);
	}
}

.strategy-decision-box {
	grid-template-columns: 1fr;
	border-color: rgba(199, 161, 90, 0.26);
	background: rgba(199, 161, 90, 0.06);
}

.strategy-decision-box p {
	color: var(--color-ivory);
	font-style: italic;
}

.strategy-expert-rule-final {
	margin-top: 34px;
}

@keyframes strategy-manual-fade {
	from {
		opacity: 0;
		transform: translateY(8px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes strategy-dot-warning {
	0%, 100% {
		color: var(--color-gold);
		transform: scale(1);
	}

	45% {
		color: #d5a08d;
		transform: scale(1.18);
	}
}

.expert-rule {
	margin-top: 20px;
	padding: 16px 20px;
	border: 1px solid rgba(199, 161, 90, 0.18);
	border-radius: 8px;
	color: var(--color-ivory);
	background: rgba(199, 161, 90, 0.06);
	font-family: var(--font-serif);
	font-size: clamp(1.1rem, 1.6vw, 1.25rem);
	font-style: italic;
	line-height: 1.45;
}

.phase-playbook {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 54px;
}

.phase-playbook em {
	display: block;
	margin-top: 14px;
	color: var(--color-gold);
	font-family: var(--font-serif);
	font-size: 1.05rem;
	font-style: italic;
	line-height: 1.45;
}

.strategy-summary {
	margin-top: 80px;
	padding: clamp(44px, 5vw, 56px);
	border: 1px solid rgba(199, 161, 90, 0.26);
	border-radius: 14px;
	background: linear-gradient(180deg, rgba(20, 14, 10, 0.98), rgba(8, 6, 5, 0.99));
	box-shadow: 0 34px 110px rgba(0, 0, 0, 0.58);
}

.strategy-summary ul {
	width: min(640px, 100%);
	margin: 22px auto 0;
	padding-left: 22px;
}

/* Final Strategy Guide image assets replace the provisional CSS-dice teaching sketches. */
.strategy-engine-row { --strategy-final-image: url("assets/n5.png"); }
.strategy-rush-row { --strategy-final-image: url("assets/n6.png"); }
.strategy-seal-pivot-diagram { --strategy-final-image: url("assets/n7.png"); }
.strategy-seal-invalid-row { --strategy-final-image: url("assets/n8.png"); }
.strategy-starvation-board { --strategy-final-image: url("assets/n9.png"); }
.strategy-four-crown-invalid-row { --strategy-final-image: url("assets/n10.png"); }
.strategy-clean-foundation-row { --strategy-final-image: url("assets/n11.png"); }
.strategy-duplicate-shape-row { --strategy-final-image: url("assets/n12.png"); }
.strategy-duplicate-halo-row { --strategy-final-image: url("assets/n13.png"); }
.strategy-dot-direction { --strategy-final-image: url("assets/n14.png"); }
.strategy-recast-flow { --strategy-final-image: url("assets/n15.png"); }
.strategy-recast-conversion { --strategy-final-image: url("assets/n16.png"); }
.strategy-recast-bad { --strategy-final-image: url("assets/n17.png"); }
.strategy-pool-threat-diagram { --strategy-final-image: url("assets/n18.png"); }
.strategy-stir-denial-diagram { --strategy-final-image: url("assets/n19.png"); }
.strategy-bad-denial-diagram { --strategy-final-image: url("assets/n20.png"); }
.strategy-timer-stir-diagram { --strategy-final-image: url("assets/n21.png"); }
.strategy-lesson-section .strategy-parley-pause-diagram:not(.strategy-parley-simple-pause) { --strategy-final-image: url("assets/n22.png"); }
.strategy-sabotage-warning { --strategy-final-image: url("assets/n23.png"); }
.strategy-shift-danger-diagram { --strategy-final-image: url("assets/n24.png"); }
.strategy-shift-compare-diagram { --strategy-final-image: url("assets/n25.png"); }
.strategy-blessing-bait-diagram { --strategy-final-image: url("assets/n26.png"); }
.strategy-safer-shift-row { --strategy-final-image: url("assets/n27.png"); }
.strategy-parley-main-diagram { --strategy-final-image: url("assets/n28.png"); }
.strategy-politics-diagram { --strategy-final-image: url("assets/n29.png"); }
.strategy-dangerous-parley { --strategy-final-image: url("assets/n30.png"); }
.strategy-parley-simple-pause { --strategy-final-image: url("assets/n31.png"); }
.strategy-endgame-clock { --strategy-final-image: url("assets/n32.png"); }
.strategy-final-check-diagram { --strategy-final-image: url("assets/n33.png"); }
.strategy-phantom-diagram { --strategy-final-image: url("assets/n34.png"); }
.strategy-bad-ending-diagram { --strategy-final-image: url("assets/n35.png"); }
.strategy-leader-trailer-diagram { --strategy-final-image: url("assets/n36.png"); }
.strategy-leader-shift-warning { --strategy-final-image: url("assets/n37.png"); }
.strategy-trailer-parley-diagram { --strategy-final-image: url("assets/n38.png"); }
.strategy-row-size-diagram { --strategy-final-image: url("assets/n39.png"); }
.strategy-decision-system-diagram { --strategy-final-image: url("assets/n40.png"); }
.strategy-system-eclipse-example { --strategy-final-image: url("assets/n41.png"); }
.strategy-system-denial-example { --strategy-final-image: url("assets/n42.png"); }
.strategy-system-close-example { --strategy-final-image: url("assets/n43.png"); }

.strategy-row-diagram[style*="--strategy-final-image"],
.strategy-engine-row,
.strategy-rush-row,
.strategy-seal-invalid-row,
.strategy-four-crown-invalid-row,
.strategy-clean-foundation-row,
.strategy-duplicate-shape-row,
.strategy-duplicate-halo-row,
.strategy-safer-shift-row,
.strategy-seal-pivot-diagram,
.strategy-starvation-board,
.strategy-dot-direction,
.strategy-recast-flow,
.strategy-recast-conversion,
.strategy-recast-bad,
.strategy-pool-threat-diagram,
.strategy-stir-denial-diagram,
.strategy-bad-denial-diagram,
.strategy-timer-stir-diagram,
.strategy-lesson-section .strategy-parley-pause-diagram,
.strategy-sabotage-warning,
.strategy-shift-danger-diagram,
.strategy-shift-compare-diagram,
.strategy-blessing-bait-diagram,
.strategy-parley-main-diagram,
.strategy-politics-diagram,
.strategy-dangerous-parley,
.strategy-endgame-clock,
.strategy-final-check-diagram,
.strategy-phantom-diagram,
.strategy-bad-ending-diagram,
.strategy-leader-trailer-diagram,
.strategy-leader-shift-warning,
.strategy-trailer-parley-diagram,
.strategy-row-size-diagram,
.strategy-decision-system-diagram,
.strategy-system-example {
	position: relative;
	display: block;
	min-height: clamp(230px, 28vw, 360px);
	border: 1px solid rgba(199, 161, 90, 0.2);
	border-radius: 12px;
	background:
		linear-gradient(180deg, rgba(8, 7, 6, 0.18), rgba(8, 7, 6, 0.34)),
		var(--strategy-final-image) center / cover no-repeat,
		rgba(0, 0, 0, 0.16);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
	overflow: hidden;
}

.strategy-row-diagram[style*="--strategy-final-image"] > *,
.strategy-engine-row > *,
.strategy-rush-row > *,
.strategy-seal-invalid-row > *,
.strategy-four-crown-invalid-row > *,
.strategy-clean-foundation-row > *,
.strategy-duplicate-shape-row > *,
.strategy-duplicate-halo-row > *,
.strategy-safer-shift-row > *,
.strategy-seal-pivot-diagram > *,
.strategy-starvation-board > *,
.strategy-dot-direction > *,
.strategy-recast-flow > *,
.strategy-recast-conversion > *,
.strategy-recast-bad > *,
.strategy-pool-threat-diagram > *,
.strategy-stir-denial-diagram > *,
.strategy-bad-denial-diagram > *,
.strategy-timer-stir-diagram > *,
.strategy-lesson-section .strategy-parley-pause-diagram > *,
.strategy-sabotage-warning > *,
.strategy-shift-danger-diagram > *,
.strategy-shift-compare-diagram > *,
.strategy-blessing-bait-diagram > *,
.strategy-parley-main-diagram > *,
.strategy-politics-diagram > *,
.strategy-dangerous-parley > *,
.strategy-endgame-clock > *,
.strategy-final-check-diagram > *,
.strategy-phantom-diagram > *,
.strategy-bad-ending-diagram > *,
.strategy-leader-trailer-diagram > *,
.strategy-leader-shift-warning > *,
.strategy-trailer-parley-diagram > *,
.strategy-row-size-diagram > *,
.strategy-decision-system-diagram > *,
.strategy-system-example > * {
	display: none;
}

.strategy-decision-system-diagram .strategy-system-path {
	display: block;
	position: absolute;
	bottom: 18px;
	min-height: auto;
	padding-top: 0;
	width: 20%;
}

.strategy-decision-system-diagram .strategy-system-path::before {
	display: none;
}

.strategy-decision-system-diagram .strategy-path-score { left: 0; }
.strategy-decision-system-diagram .strategy-path-build { left: 20%; }
.strategy-decision-system-diagram .strategy-path-deny { left: 40%; }
.strategy-decision-system-diagram .strategy-path-pressure { left: 60%; }
.strategy-decision-system-diagram .strategy-path-close { left: 80%; }

.strategy-seal-invalid-row,
.strategy-four-crown-invalid-row,
.strategy-duplicate-shape-row,
.strategy-duplicate-halo-row,
.strategy-recast-bad,
.strategy-bad-denial-diagram,
.strategy-sabotage-warning,
.strategy-shift-danger-diagram,
.strategy-dangerous-parley,
.strategy-bad-ending-diagram {
	border-color: rgba(170, 82, 68, 0.45);
}

.phase-playbook article,
.strategy-summary {
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.phase-playbook article::before,
.strategy-summary::before {
	position: absolute;
	inset: 0;
	z-index: -2;
	content: "";
	background:
		linear-gradient(180deg, rgba(8, 7, 6, 0.72), rgba(8, 7, 6, 0.88)),
		var(--strategy-final-image) center / cover no-repeat;
	filter: saturate(0.9) contrast(1.02) brightness(0.75);
	opacity: 0.9;
}

.phase-playbook article:nth-child(1) { --strategy-final-image: url("assets/n44.png"); }
.phase-playbook article:nth-child(2) { --strategy-final-image: url("assets/n45.png"); }
.phase-playbook article:nth-child(3) { --strategy-final-image: url("assets/n46.png"); }
.strategy-summary { --strategy-final-image: url("assets/n47.png"); }

.strategy-final-line {
	margin-top: 36px !important;
	color: var(--color-gold) !important;
	font-size: clamp(1.55rem, 3vw, 2.12rem) !important;
	font-style: italic;
	line-height: 1.45 !important;
	text-align: center;
}

/* Section 9 returns to objects and materials after the rulebook, like entering a dark exhibition room. */
.gallery-section {
	position: relative;
	padding: 120px 24px 140px;
	overflow: hidden;
	background:
		radial-gradient(circle at 26% 28%, rgba(199, 161, 90, 0.06), transparent 25rem),
		radial-gradient(circle at 72% 54%, rgba(74, 17, 24, 0.1), transparent 28rem),
		linear-gradient(180deg, #070606 0%, #0d0908 48%, #050404 100%);
	isolation: isolate;
}

.gallery-section::before {
	position: absolute;
	inset: 0;
	z-index: -2;
	content: "";
	background:
		repeating-linear-gradient(28deg, rgba(232, 220, 194, 0.025) 0 1px, transparent 1px 7px),
		repeating-linear-gradient(112deg, rgba(199, 161, 90, 0.02) 0 1px, transparent 1px 9px);
	opacity: 0.56;
}

.gallery-header {
	width: min(760px, 100%);
	margin: 0 auto;
	text-align: center;
}

.gallery-header .eyebrow {
	text-align: center;
}

.gallery-header h2 {
	color: var(--color-ivory);
	font-size: clamp(3.25rem, 6vw, 4.5rem);
	letter-spacing: 0.05em;
	line-height: 1.05;
	text-align: center;
	text-shadow: 0 20px 52px rgba(0, 0, 0, 0.5);
}

.gallery-intro {
	margin-top: 30px;
	color: var(--color-parchment);
	font-family: var(--font-serif);
	font-size: clamp(1.05rem, 1.32vw, 1.18rem);
	line-height: 1.75;
}

.gallery-intro p {
	margin: 0 0 16px;
}

.gallery-poem {
	margin: 28px auto;
	color: var(--color-ivory);
	font-family: var(--font-serif);
	font-size: clamp(1.22rem, 1.9vw, 1.5rem);
	font-style: italic;
	line-height: 1.8;
	text-align: center;
}

.gallery-poem p {
	margin: 0;
}

.gallery-filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: 46px auto 42px;
}

.gallery-filters button {
	padding: 10px 16px;
	border: 1px solid rgba(199, 161, 90, 0.18);
	border-radius: 999px;
	color: var(--color-parchment);
	background: transparent;
	font-family: var(--font-body);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.gallery-filters button:hover,
.gallery-filters button:focus-visible {
	border-color: rgba(199, 161, 90, 0.42);
	color: var(--color-ivory);
}

.gallery-filters button.is-active {
	border-color: rgba(199, 161, 90, 0.48);
	color: var(--color-gold);
	background: rgba(199, 161, 90, 0.12);
}

.gallery-grid {
	display: grid;
	grid-auto-flow: dense;
	grid-auto-rows: 120px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	width: min(var(--site-max), 100%);
	margin: 0 auto;
}

.gallery-card {
	position: relative;
	grid-row: span 3;
	min-height: 320px;
	padding: 0;
	border: 1px solid rgba(199, 161, 90, 0.18);
	border-radius: 12px;
	color: inherit;
	background: #0d0908;
	box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
	cursor: pointer;
	overflow: hidden;
	text-align: left;
	transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease, opacity 220ms ease;
}

.gallery-card[hidden] {
	display: none;
}

.gallery-card:hover,
.gallery-card:focus-visible {
	border-color: rgba(199, 161, 90, 0.5);
	box-shadow: 0 34px 100px rgba(0, 0, 0, 0.62), 0 0 28px rgba(199, 161, 90, 0.08);
	transform: translateY(-4px);
}

.gallery-card img {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.gallery-feature {
	grid-column: span 2;
	grid-row: span 4;
	min-height: 430px;
}

.gallery-wide {
	grid-column: span 2;
}

.gallery-full {
	grid-column: 1 / -1;
	grid-row: span 4;
	min-height: 430px;
}

.gallery-detail {
	grid-row: span 2;
	min-height: 250px;
}

.gallery-art {
	position: absolute;
	inset: 0;
	background:
		var(--gallery-art-scene),
		radial-gradient(circle at 36% 28%, rgba(199, 161, 90, 0.15), transparent 16rem),
		linear-gradient(145deg, rgba(61, 31, 18, 0.86), rgba(5, 4, 4, 0.98));
	transform: scale(1);
	transition: transform 260ms ease, filter 260ms ease;
}

.gallery-art::before {
	position: absolute;
	inset: 0;
	content: "";
	background:
		radial-gradient(ellipse at center, transparent 46%, rgba(0, 0, 0, 0.68) 100%),
		linear-gradient(135deg, rgba(255, 224, 160, 0.09), transparent 36%);
}

.gallery-art::after {
	position: absolute;
	inset: -20%;
	content: "";
	background-image: radial-gradient(circle, rgba(232, 220, 194, 0.14) 0 1px, transparent 1.5px);
	background-size: 14rem 14rem;
	opacity: 0;
	transition: opacity 200ms ease;
}

.gallery-card:hover .gallery-art,
.gallery-card:focus-visible .gallery-art {
	filter: brightness(1.08);
	transform: scale(1.025);
}

.gallery-card:hover .gallery-art::after,
.gallery-card:focus-visible .gallery-art::after {
	opacity: 0.16;
}

.gallery-art-case { --gallery-art-scene: radial-gradient(ellipse at 42% 42%, rgba(111, 54, 34, 0.6), transparent 28%), linear-gradient(110deg, transparent 38%, rgba(199, 161, 90, 0.15) 38.4%, transparent 39%); }
.gallery-art-crown { --gallery-art-scene: radial-gradient(circle at 50% 42%, rgba(224, 194, 122, 0.24), transparent 13rem); }
.gallery-art-hourglass { --gallery-art-scene: linear-gradient(90deg, transparent 46%, rgba(199, 161, 90, 0.28) 47%, transparent 53%), radial-gradient(circle at 60% 38%, rgba(199, 161, 90, 0.16), transparent 12rem); }
.gallery-art-pool { --gallery-art-scene: radial-gradient(circle at 50% 50%, rgba(199, 161, 90, 0.18), transparent 20rem), radial-gradient(circle at 28% 64%, rgba(232, 220, 194, 0.1), transparent 8rem); }
.gallery-art-row { --gallery-art-scene: linear-gradient(90deg, transparent 18%, rgba(199, 161, 90, 0.14) 18.3%, transparent 62%), radial-gradient(circle at 70% 44%, rgba(199, 161, 90, 0.18), transparent 9rem); }
.gallery-art-omen { --gallery-art-scene: radial-gradient(circle at 50% 46%, rgba(33, 17, 42, 0.34), transparent 16rem); }
.gallery-art-seal { --gallery-art-scene: radial-gradient(circle at 50% 46%, rgba(52, 16, 24, 0.34), transparent 16rem); }
.gallery-art-eclipse { --gallery-art-scene: radial-gradient(circle at 35% 42%, rgba(45, 36, 16, 0.24), transparent 14rem), radial-gradient(circle at 68% 48%, rgba(21, 29, 52, 0.28), transparent 14rem); }
.gallery-art-engraving { --gallery-art-scene: radial-gradient(circle at 50% 45%, rgba(199, 161, 90, 0.24), transparent 10rem), repeating-linear-gradient(25deg, rgba(232, 220, 194, 0.05) 0 1px, transparent 1px 7px); }
.gallery-art-parley { --gallery-art-scene: linear-gradient(90deg, transparent 24%, rgba(199, 161, 90, 0.18) 49%, transparent 76%); }
.gallery-art-shift { --gallery-art-scene: radial-gradient(circle at 42% 48%, rgba(199, 161, 90, 0.2), transparent 12rem), linear-gradient(130deg, transparent 50%, rgba(232, 220, 194, 0.08) 50.5%, transparent 51%); }
.gallery-art-score { --gallery-art-scene: radial-gradient(circle at 62% 58%, rgba(199, 161, 90, 0.18), transparent 12rem); }
.gallery-art-travel { --gallery-art-scene: linear-gradient(120deg, rgba(97, 48, 30, 0.44), transparent 54%), radial-gradient(circle at 36% 54%, rgba(199, 161, 90, 0.14), transparent 12rem); }
.gallery-art-night { --gallery-art-scene: radial-gradient(circle at 28% 35%, rgba(199, 161, 90, 0.18), transparent 18rem), radial-gradient(circle at 70% 60%, rgba(74, 17, 24, 0.18), transparent 20rem); }

.gallery-art-case::before,
.gallery-art-crown::before,
.gallery-art-omen::before,
.gallery-art-seal::before,
.gallery-art-eclipse::before {
	box-shadow: inset 0 0 0 999px rgba(0, 0, 0, 0.06);
}

.gallery-caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 72px 24px 24px;
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78) 58%, rgba(0, 0, 0, 0.94));
	transition: transform 200ms ease;
}

.gallery-caption strong {
	display: block;
	margin-bottom: 8px;
	color: var(--color-gold);
	font-family: var(--font-body);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.25;
	text-transform: uppercase;
}

.gallery-caption em {
	display: block;
	color: var(--color-ivory);
	font-family: var(--font-serif);
	font-size: 1.08rem;
	font-style: italic;
	line-height: 1.45;
}

.gallery-card:hover .gallery-caption,
.gallery-card:focus-visible .gallery-caption {
	transform: translateY(-3px);
}

.valid-sign-tag {
	position: absolute;
	right: 14px;
	top: 14px;
	z-index: 3;
	padding: 7px 10px;
	border: 1px solid rgba(199, 161, 90, 0.25);
	border-radius: 999px;
	color: var(--color-gold);
	background: rgba(7, 6, 6, 0.76);
	font-family: var(--font-body);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0;
	transition: opacity 180ms ease;
}

.gallery-sign-card:hover .valid-sign-tag,
.gallery-sign-card:focus-visible .valid-sign-tag {
	opacity: 1;
}

.gallery-closing {
	width: min(900px, 100%);
	margin: 70px auto 0;
	padding: 28px 34px;
	border: 1px solid rgba(199, 161, 90, 0.18);
	border-radius: 10px;
	color: var(--color-ivory);
	background: rgba(199, 161, 90, 0.055);
	font-family: var(--font-serif);
	font-size: clamp(1.5rem, 2.7vw, 1.88rem);
	font-style: italic;
	line-height: 1.5;
	text-align: center;
}

.gallery-closing span {
	display: block;
	margin-bottom: 12px;
	color: rgba(199, 161, 90, 0.65);
	font-family: Georgia, serif;
	font-size: 1.75rem;
	font-style: normal;
	line-height: 1;
}

.gallery-closing p {
	margin: 0;
}

.gallery-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: grid;
	place-items: center;
	padding: 28px;
	background: rgba(5, 4, 4, 0.94);
}

.gallery-lightbox[hidden] {
	display: none;
}

.lightbox-content {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
	gap: 28px;
	align-items: end;
	width: min(var(--site-medium-max), 100%);
}

.lightbox-content img {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.lightbox-art {
	min-height: min(62vh, 620px);
	border: 1px solid rgba(199, 161, 90, 0.25);
	border-radius: 12px;
	background:
		var(--lightbox-scene),
		radial-gradient(circle at 36% 32%, rgba(199, 161, 90, 0.16), transparent 20rem),
		linear-gradient(145deg, rgba(61, 31, 18, 0.86), rgba(5, 4, 4, 0.98));
	box-shadow: 0 30px 100px rgba(0, 0, 0, 0.65);
}

.lightbox-caption {
	padding: 26px;
	border: 1px solid rgba(199, 161, 90, 0.18);
	border-radius: 10px;
	background: rgba(13, 9, 8, 0.86);
}

.lightbox-caption > p:first-child {
	margin: 0 0 10px;
	color: #827761;
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.lightbox-caption h3 {
	margin: 0 0 10px;
	color: var(--color-gold);
	font-family: var(--font-title);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.lightbox-caption p {
	margin: 0 0 16px;
	color: var(--color-ivory);
	font-family: var(--font-serif);
	font-size: 1.18rem;
	font-style: italic;
	line-height: 1.45;
}

.lightbox-caption em {
	color: var(--color-parchment);
	font-family: var(--font-serif);
	font-size: 1rem;
	line-height: 1.55;
}

.lightbox-close,
.lightbox-arrow {
	position: fixed;
	z-index: 101;
	border: 1px solid rgba(199, 161, 90, 0.24);
	color: var(--color-gold);
	background: rgba(7, 6, 6, 0.78);
	cursor: pointer;
	transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.lightbox-close {
	right: 24px;
	top: 24px;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	font-size: 1.5rem;
}

.lightbox-arrow {
	top: 50%;
	width: 46px;
	height: 58px;
	border-radius: 999px;
	font-size: 2.2rem;
	transform: translateY(-50%);
}

.lightbox-prev {
	left: 24px;
}

.lightbox-next {
	right: 24px;
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-arrow:hover,
.lightbox-arrow:focus-visible {
	border-color: var(--color-gold);
	color: var(--color-ivory);
	background: rgba(199, 161, 90, 0.08);
}

body.reveal-ready .gallery-section .eyebrow,
body.reveal-ready .gallery-section h2,
body.reveal-ready .gallery-intro > p,
body.reveal-ready .gallery-poem p,
body.reveal-ready .gallery-filters,
body.reveal-ready .gallery-card,
body.reveal-ready .gallery-closing {
	opacity: 0;
	transform: translateY(24px);
}

body.reveal-ready .gallery-section.is-visible .eyebrow,
body.reveal-ready .gallery-section.is-visible h2,
body.reveal-ready .gallery-section.is-visible .gallery-intro > p,
body.reveal-ready .gallery-section.is-visible .gallery-poem p,
body.reveal-ready .gallery-section.is-visible .gallery-filters,
body.reveal-ready .gallery-section.is-visible .gallery-card,
body.reveal-ready .gallery-section.is-visible .gallery-closing {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 760ms ease, transform 920ms cubic-bezier(0.19, 1, 0.22, 1);
}

body.reveal-ready .gallery-section.is-visible .gallery-card:hover,
body.reveal-ready .gallery-section.is-visible .gallery-card:focus-visible {
	transform: translateY(-4px);
}

body.reveal-ready .gallery-section.is-visible .eyebrow { transition-delay: 80ms; }
body.reveal-ready .gallery-section.is-visible h2 { transition-delay: 180ms; }
body.reveal-ready .gallery-section.is-visible .gallery-intro > p:nth-child(1) { transition-delay: 300ms; }
body.reveal-ready .gallery-section.is-visible .gallery-poem p:nth-child(1) { transition-delay: 390ms; }
body.reveal-ready .gallery-section.is-visible .gallery-poem p:nth-child(2) { transition-delay: 470ms; }
body.reveal-ready .gallery-section.is-visible .gallery-poem p:nth-child(3) { transition-delay: 550ms; }
body.reveal-ready .gallery-section.is-visible .gallery-poem p:nth-child(4) { transition-delay: 630ms; }
body.reveal-ready .gallery-section.is-visible .gallery-intro > p:nth-child(3) { transition-delay: 720ms; }
body.reveal-ready .gallery-section.is-visible .gallery-intro > p:nth-child(4) { transition-delay: 810ms; }
body.reveal-ready .gallery-section.is-visible .gallery-intro > p:nth-child(5) { transition-delay: 900ms; }
body.reveal-ready .gallery-section.is-visible .gallery-intro > p:nth-child(6) { transition-delay: 990ms; }
body.reveal-ready .gallery-section.is-visible .gallery-filters { transition-delay: 1080ms; }
body.reveal-ready .gallery-section.is-visible .gallery-card:nth-child(1) { transition-delay: 1160ms; }
body.reveal-ready .gallery-section.is-visible .gallery-card:nth-child(2) { transition-delay: 1220ms; }
body.reveal-ready .gallery-section.is-visible .gallery-card:nth-child(3) { transition-delay: 1280ms; }
body.reveal-ready .gallery-section.is-visible .gallery-card:nth-child(4) { transition-delay: 1340ms; }
body.reveal-ready .gallery-section.is-visible .gallery-card:nth-child(5) { transition-delay: 1400ms; }
body.reveal-ready .gallery-section.is-visible .gallery-card:nth-child(n+6) { transition-delay: 1460ms; }
body.reveal-ready .gallery-section.is-visible .gallery-closing { transition-delay: 1640ms; }

/* Section 10 makes ownership feel like a private commission, not a product checkout. */
.commission-section {
	position: relative;
	padding: 130px 24px 150px;
	overflow: hidden;
	background:
		radial-gradient(circle at 50% 28%, rgba(199, 161, 90, 0.08), transparent 28rem),
		radial-gradient(circle at 24% 58%, rgba(58, 32, 17, 0.2), transparent 30rem),
		radial-gradient(circle at 80% 36%, rgba(74, 17, 24, 0.14), transparent 28rem),
		linear-gradient(180deg, #090706 0%, #160d08 48%, #070504 100%);
	isolation: isolate;
}

.commission-section::before {
	position: absolute;
	inset: 0;
	z-index: -2;
	content: "";
	background:
		repeating-linear-gradient(28deg, rgba(232, 220, 194, 0.026) 0 1px, transparent 1px 7px),
		repeating-linear-gradient(112deg, rgba(199, 161, 90, 0.02) 0 1px, transparent 1px 9px);
	opacity: 0.58;
}

.commission-header {
	width: min(800px, 100%);
	margin: 0 auto;
	text-align: center;
}

.commission-header .eyebrow {
	text-align: center;
}

.commission-header h2 {
	color: var(--color-ivory);
	font-size: clamp(3.25rem, 6.2vw, 4.62rem);
	letter-spacing: 0.05em;
	line-height: 1.05;
	text-align: center;
	text-shadow: 0 20px 52px rgba(0, 0, 0, 0.5);
}

.commission-copy {
	margin-top: 30px;
	color: var(--color-parchment);
	font-family: var(--font-serif);
	font-size: clamp(1.05rem, 1.32vw, 1.18rem);
	line-height: 1.75;
}

.commission-copy p {
	margin: 0 0 16px;
}

.commission-poem {
	width: min(620px, 100%);
	margin: 42px auto;
	padding: 28px 0;
	border-top: 1px solid rgba(199, 161, 90, 0.42);
	border-bottom: 1px solid rgba(199, 161, 90, 0.42);
	color: var(--color-ivory);
	font-family: var(--font-serif);
	font-size: clamp(1.32rem, 2.6vw, 2rem);
	font-style: italic;
	line-height: 1.8;
	text-align: center;
}

.commission-poem p {
	margin: 0;
}

.commission-showcase {
	position: relative;
	width: min(var(--site-max), 100%);
	min-height: clamp(420px, 50vw, 620px);
	margin: 58px auto 58px;
	border: 1px solid rgba(199, 161, 90, 0.24);
	border-radius: 16px;
	background:
		radial-gradient(circle at 34% 34%, rgba(199, 161, 90, 0.18), transparent 20rem),
		linear-gradient(145deg, rgba(72, 35, 20, 0.9), rgba(7, 5, 4, 0.98));
	box-shadow: 0 36px 120px rgba(0, 0, 0, 0.68), inset 0 0 92px rgba(0, 0, 0, 0.5);
	overflow: hidden;
}

.commission-showcase img {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.commission-showcase::before {
	position: absolute;
	inset: 0;
	z-index: 3;
	content: "";
	background:
		radial-gradient(ellipse at center, transparent 44%, rgba(0, 0, 0, 0.68) 100%),
		linear-gradient(135deg, rgba(255, 224, 160, 0.12), transparent 34%);
	pointer-events: none;
}

.commission-showcase::after {
	position: absolute;
	inset: -20%;
	z-index: 4;
	content: "";
	background-image: radial-gradient(circle, rgba(232, 220, 194, 0.16) 0 1px, transparent 1.5px);
	background-size: 18rem 18rem;
	opacity: 0.14;
	animation: dust-float 18s ease-in-out infinite alternate;
	pointer-events: none;
}

.commission-scene {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.commission-case {
	position: absolute;
	left: 16%;
	top: 16%;
	width: 58%;
	height: 52%;
	border: 1px solid rgba(199, 161, 90, 0.2);
	border-radius: 18px;
	background:
		linear-gradient(120deg, rgba(111, 54, 34, 0.62), rgba(22, 11, 8, 0.95)),
		repeating-linear-gradient(32deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 6px);
	box-shadow: inset 0 0 34px rgba(0, 0, 0, 0.62), 0 28px 52px rgba(0, 0, 0, 0.42);
	transform: rotate(-5deg);
}

.commission-letter {
	position: absolute;
	right: 16%;
	top: 18%;
	width: 22%;
	height: 18%;
	border-radius: 4px;
	background: linear-gradient(110deg, rgba(232, 220, 194, 0.64), rgba(171, 134, 77, 0.28));
	transform: rotate(9deg);
	opacity: 0.72;
}

.commission-die {
	position: absolute;
	display: grid;
	place-items: center;
	width: 74px;
	height: 74px;
	border: 1px solid rgba(83, 43, 23, 0.88);
	border-radius: 14px;
	color: #21110d;
	background:
		radial-gradient(circle at 28% 24%, rgba(255, 238, 190, 0.76), transparent 34%),
		linear-gradient(145deg, #c89251, #7b421f 64%, #3b1d10);
	box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.11), inset -8px -12px 22px rgba(0, 0, 0, 0.35), 0 16px 23px rgba(0, 0, 0, 0.45);
	font-family: Georgia, serif;
	font-size: 2.1rem;
}

.commission-crown {
	left: 28%;
	bottom: 17%;
	width: 90px;
	height: 90px;
	font-size: 2.7rem;
	transform: rotate(-10deg);
	z-index: 2;
}

.commission-sun {
	left: 42%;
	bottom: 22%;
	transform: rotate(16deg) scale(0.82);
}

.commission-moon {
	left: 19%;
	bottom: 30%;
	transform: rotate(22deg) scale(0.72);
	opacity: 0.72;
}

.commission-hourglass {
	position: absolute;
	width: 46px;
	height: 94px;
	border-top: 4px solid rgba(199, 161, 90, 0.82);
	border-bottom: 4px solid rgba(199, 161, 90, 0.82);
}

.commission-hourglass::before {
	position: absolute;
	inset: 8px 8px;
	content: "";
	border: 1px solid rgba(232, 220, 194, 0.28);
	clip-path: polygon(0 0, 100% 0, 57% 50%, 100% 100%, 0 100%, 43% 50%);
}

.commission-hourglass-standing {
	right: 24%;
	bottom: 22%;
}

.commission-hourglass-resting {
	right: 38%;
	top: 28%;
	transform: rotate(80deg) scale(0.74);
	opacity: 0.7;
}

.commission-clasp {
	position: absolute;
	left: 47%;
	top: 38%;
	width: 62px;
	height: 26px;
	border: 1px solid rgba(224, 194, 122, 0.4);
	border-radius: 4px;
	background: rgba(199, 161, 90, 0.18);
	transform: rotate(-6deg);
}

.commission-image-label {
	position: absolute;
	left: 28px;
	bottom: 28px;
	z-index: 5;
	padding: 14px 18px;
	border: 1px solid rgba(199, 161, 90, 0.22);
	border-radius: 6px;
	background: rgba(7, 6, 6, 0.76);
}

.commission-image-label strong {
	display: block;
	margin-bottom: 6px;
	color: var(--color-gold);
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.commission-image-label em {
	color: var(--color-ivory);
	font-family: var(--font-serif);
	font-size: 1rem;
}

.craft-choice-intro {
	width: min(700px, 100%);
	margin: 0 auto 34px;
	color: var(--color-ivory);
	font-family: var(--font-serif);
	font-size: clamp(1.24rem, 2.1vw, 1.6rem);
	font-style: italic;
	line-height: 1.65;
	text-align: center;
}

.craft-choice-intro p {
	margin: 0 0 10px;
}

.commission-choice-cards {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	width: min(var(--site-max), 100%);
	margin: 0 auto;
}

.commission-choice-card {
	position: relative;
	padding: 30px;
	border: 1px solid rgba(199, 161, 90, 0.18);
	border-radius: 12px;
	background:
		linear-gradient(180deg, rgba(24, 16, 11, 0.96), rgba(9, 7, 6, 0.99));
	box-shadow: 0 26px 90px rgba(0, 0, 0, 0.5);
	overflow: hidden;
	transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.commission-choice-card:hover,
.commission-choice-card:focus-within {
	border-color: rgba(199, 161, 90, 0.52);
	box-shadow: 0 34px 100px rgba(0, 0, 0, 0.58), 0 0 28px rgba(199, 161, 90, 0.08);
	transform: translateY(-4px);
}

.commission-choice-icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	margin-bottom: 18px;
	color: var(--color-gold);
	opacity: 0.75;
	font-family: Georgia, serif;
	font-size: 1.8rem;
}

.commission-choice-img {
	display: block;
	width: 58px;
	height: 58px;
	object-fit: contain;
	object-position: center;
	filter: drop-shadow(0 0 14px rgba(199, 161, 90, 0.12));
	transition: filter 180ms ease, transform 180ms ease;
}

.commission-choice-card:hover .commission-choice-img,
.commission-choice-card:focus-within .commission-choice-img {
	filter: drop-shadow(0 0 22px rgba(224, 194, 122, 0.24));
	transform: translateY(-2px);
}

.pattern-icon-img {
	border: 1px solid rgba(199, 161, 90, 0.18);
	border-radius: 50%;
	padding: 5px;
}

.case-icon {
	border: 1px solid rgba(199, 161, 90, 0.38);
	border-radius: 8px;
}

.case-icon::before {
	width: 22px;
	height: 10px;
	border: 1px solid currentColor;
	border-radius: 3px;
	content: "";
}

.hourglass-icon {
	border-top: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
}

.hourglass-icon::before {
	width: 22px;
	height: 32px;
	border: 1px solid currentColor;
	content: "";
	clip-path: polygon(0 0, 100% 0, 56% 50%, 100% 100%, 0 100%, 44% 50%);
}

.pattern-icon {
	position: relative;
	border: 1px solid rgba(199, 161, 90, 0.18);
	border-radius: 50%;
}

.pattern-icon span {
	position: absolute;
	font-size: 0.95rem;
}

.pattern-icon span:nth-child(1) { top: 2px; left: 50%; transform: translateX(-50%); }
.pattern-icon span:nth-child(2) { right: 4px; top: 50%; transform: translateY(-50%); }
.pattern-icon span:nth-child(3) { bottom: 2px; left: 50%; transform: translateX(-50%); }
.pattern-icon span:nth-child(4) { left: 4px; top: 50%; transform: translateY(-50%); }

.pattern-card:hover .pattern-icon {
	transform: rotate(4deg);
}

.commission-choice-card h3 {
	margin: 0 0 14px;
	color: var(--color-ivory);
	font-family: var(--font-title);
	font-size: clamp(1.55rem, 2.5vw, 2rem);
	font-weight: 500;
	letter-spacing: 0.07em;
	line-height: 1.15;
	text-transform: uppercase;
}

.commission-choice-card p {
	margin: 0;
	color: var(--color-parchment);
	font-family: var(--font-serif);
	font-size: 1rem;
	line-height: 1.65;
}

.pattern-secret {
	margin-top: 16px !important;
	color: var(--color-gold) !important;
	font-size: 0.94rem !important;
	font-style: italic;
}

.commission-levels {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	width: min(var(--site-medium-max), 100%);
	margin: 54px auto 0;
}

.commission-levels-image {
	grid-column: 1 / -1;
	display: block;
	width: 100%;
	min-height: 260px;
	object-fit: cover;
	border: 1px solid rgba(199, 161, 90, 0.22);
	border-radius: 12px;
	box-shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
}

.commission-level-card {
	padding: 28px;
	border: 1px solid rgba(199, 161, 90, 0.16);
	border-radius: 10px;
	background: rgba(232, 220, 194, 0.032);
	transition: border-color 180ms ease, transform 180ms ease;
}

.commission-level-card:hover {
	border-color: rgba(199, 161, 90, 0.46);
	transform: translateY(-3px);
}

.commission-level-card h3 {
	margin: 0 0 12px;
	color: var(--color-gold);
	font-family: var(--font-body);
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.commission-level-card p {
	margin: 0;
	color: var(--color-ivory);
	font-family: var(--font-serif);
	font-size: clamp(1.18rem, 2vw, 1.38rem);
	line-height: 1.45;
}

.commission-level-card em {
	display: block;
	margin-top: 14px;
	color: #827761;
	font-family: var(--font-body);
	font-size: 0.84rem;
	font-style: normal;
	line-height: 1.45;
}

.craft-master-quote {
	width: min(860px, 100%);
	margin: 72px auto;
	padding: clamp(34px, 4vw, 44px);
	border: 1px solid rgba(199, 161, 90, 0.2);
	border-left: 3px solid var(--color-gold);
	border-radius: 10px;
	background: rgba(199, 161, 90, 0.055);
	color: var(--color-ivory);
	text-align: center;
}

.craft-master-quote span {
	display: block;
	margin-bottom: 12px;
	color: var(--color-gold);
	font-family: Georgia, serif;
	font-size: 1.7rem;
}

.craft-master-quote p {
	margin: 0;
	font-family: var(--font-serif);
	font-size: clamp(1.45rem, 2.7vw, 2rem);
	font-style: italic;
	line-height: 1.45;
}

.commission-cta {
	position: relative;
	width: min(900px, 100%);
	margin: 0 auto;
	padding: clamp(40px, 5vw, 58px);
	border: 1px solid rgba(199, 161, 90, 0.24);
	border-radius: 14px;
	background:
		radial-gradient(circle at 50% 22%, rgba(199, 161, 90, 0.08), transparent 18rem),
		linear-gradient(180deg, rgba(19, 13, 9, 0.98), rgba(8, 6, 5, 0.99));
	box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
	overflow: hidden;
	text-align: center;
}

.commission-cta::before {
	position: absolute;
	right: -3%;
	top: -6%;
	width: 15rem;
	height: 15rem;
	content: "";
	background: url("assets/icon-crown-gold.png") center / contain no-repeat;
	opacity: 0.03;
}

.commission-cta h3 {
	position: relative;
	margin: 0;
	color: var(--color-gold);
	font-family: var(--font-body);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.commission-cta > p {
	position: relative;
	width: min(700px, 100%);
	margin: 18px auto 32px;
	color: var(--color-parchment);
	font-family: var(--font-serif);
	font-size: clamp(1.06rem, 1.4vw, 1.18rem);
	line-height: 1.7;
}

.commission-actions {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
}

.commission-note {
	margin: 14px 0 0 !important;
	color: #827761 !important;
	font-family: var(--font-serif) !important;
	font-size: 0.92rem !important;
	font-style: italic;
}

.craft-tradition-panel {
	width: min(900px, 100%);
	margin: 28px auto 0;
}

.craft-tradition-inner {
	padding: clamp(28px, 4vw, 42px);
	border: 1px solid rgba(199, 161, 90, 0.22);
	border-radius: 14px;
	background:
		linear-gradient(180deg, rgba(18, 12, 9, 0.98), rgba(8, 6, 5, 0.99));
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.craft-tradition-inner h3 {
	margin: 0 0 26px;
	color: var(--color-ivory);
	font-family: var(--font-serif);
	font-size: clamp(1.4rem, 2.4vw, 1.8rem);
	font-weight: 500;
	line-height: 1.3;
}

.craft-tradition-inner section {
	padding: 24px 0;
	border-top: 1px solid rgba(199, 161, 90, 0.12);
}

.craft-tradition-inner h4 {
	margin: 0 0 12px;
	color: var(--color-gold);
	font-family: var(--font-title);
	font-size: clamp(1.22rem, 2vw, 1.55rem);
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.craft-tradition-inner p {
	margin: 0 0 14px;
	color: var(--color-parchment);
	font-family: var(--font-serif);
	font-size: 1.04rem;
	line-height: 1.72;
}

.craft-tradition-inner a {
	color: var(--color-gold);
	text-decoration: none;
}

.craft-tradition-inner a:hover,
.craft-tradition-inner a:focus-visible {
	color: var(--color-ivory);
}

.registrar-section {
	padding: 30px 0;
}

.registry-houses-section {
	display: grid;
	grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.suissa-seal-card {
	position: relative;
	padding: 22px;
	border: 1px solid rgba(199, 161, 90, 0.22);
	border-radius: 12px;
	background:
		radial-gradient(circle at 50% 30%, rgba(199, 161, 90, 0.08), transparent 9rem),
		rgba(199, 161, 90, 0.035);
	text-align: center;
}

.suissa-seal-card img {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.suissa-seal-placeholder {
	position: relative;
	display: grid;
	place-items: center;
	width: 138px;
	height: 138px;
	margin: 0 auto 16px;
	border: 1px solid rgba(199, 161, 90, 0.42);
	border-radius: 50%;
	color: var(--color-gold);
	background:
		radial-gradient(circle at 50% 38%, rgba(232, 220, 194, 0.08), transparent 4rem),
		rgba(7, 6, 6, 0.36);
	box-shadow: inset 0 0 28px rgba(0, 0, 0, 0.42), 0 0 24px rgba(199, 161, 90, 0.06);
}

.suissa-seal-placeholder::before {
	position: absolute;
	inset: 13px;
	content: "";
	border: 1px solid rgba(199, 161, 90, 0.22);
	border-radius: 50%;
}

.seal-owl {
	position: absolute;
	top: 30px;
	font-size: 2.3rem;
	line-height: 1;
}

.seal-owl::before,
.seal-owl::after {
	position: absolute;
	top: 5px;
	width: 8px;
	height: 8px;
	content: "";
	border-radius: 50%;
	background: var(--color-gold);
}

.seal-owl::before {
	left: 8px;
}

.seal-owl::after {
	right: 8px;
}

.seal-hourglass {
	position: absolute;
	bottom: 28px;
	width: 30px;
	height: 48px;
	border-top: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
}

.seal-hourglass::before {
	position: absolute;
	inset: 6px 5px;
	content: "";
	border: 1px solid currentColor;
	clip-path: polygon(0 0, 100% 0, 56% 50%, 100% 100%, 0 100%, 44% 50%);
}

.suissa-seal-card p {
	margin: 0;
	color: var(--color-gold);
	font-family: var(--font-body);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.commission-final-line {
	width: min(760px, 100%);
	margin: 62px auto 0;
	color: var(--color-ivory);
	font-family: var(--font-serif);
	font-size: clamp(1.42rem, 2.8vw, 2rem);
	font-style: italic;
	line-height: 1.65;
	text-align: center;
}

.commission-final-line p {
	margin: 0 0 10px;
}

.commission-final-line p:last-child {
	color: var(--color-gold);
}

body.reveal-ready .commission-section .eyebrow,
body.reveal-ready .commission-section h2,
body.reveal-ready .commission-copy > p,
body.reveal-ready .commission-poem p,
body.reveal-ready .commission-showcase,
body.reveal-ready .craft-choice-intro,
body.reveal-ready .commission-choice-card,
body.reveal-ready .commission-level-card,
body.reveal-ready .craft-master-quote,
body.reveal-ready .commission-cta,
body.reveal-ready .commission-final-line {
	opacity: 0;
	transform: translateY(18px);
}

body.reveal-ready .commission-showcase {
	filter: brightness(0.45);
}

body.reveal-ready .commission-section.is-visible .eyebrow,
body.reveal-ready .commission-section.is-visible h2,
body.reveal-ready .commission-section.is-visible .commission-copy > p,
body.reveal-ready .commission-section.is-visible .commission-poem p,
body.reveal-ready .commission-section.is-visible .commission-showcase,
body.reveal-ready .commission-section.is-visible .craft-choice-intro,
body.reveal-ready .commission-section.is-visible .commission-choice-card,
body.reveal-ready .commission-section.is-visible .commission-level-card,
body.reveal-ready .commission-section.is-visible .craft-master-quote,
body.reveal-ready .commission-section.is-visible .commission-cta,
body.reveal-ready .commission-section.is-visible .commission-final-line {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 760ms ease, transform 920ms cubic-bezier(0.19, 1, 0.22, 1), filter 900ms ease;
}

body.reveal-ready .commission-section.is-visible .commission-showcase {
	filter: brightness(1);
}

body.reveal-ready .commission-section.is-visible .eyebrow { transition-delay: 80ms; }
body.reveal-ready .commission-section.is-visible h2 { transition-delay: 180ms; }
body.reveal-ready .commission-section.is-visible .commission-copy > p:nth-child(1) { transition-delay: 300ms; }
body.reveal-ready .commission-section.is-visible .commission-copy > p:nth-child(2) { transition-delay: 390ms; }
body.reveal-ready .commission-section.is-visible .commission-copy > p:nth-child(3) { transition-delay: 480ms; }
body.reveal-ready .commission-section.is-visible .commission-copy > p:nth-child(4) { transition-delay: 570ms; }
body.reveal-ready .commission-section.is-visible .commission-copy > p:nth-child(n+5) { transition-delay: 660ms; }
body.reveal-ready .commission-section.is-visible .commission-poem p:nth-child(1) { transition-delay: 760ms; }
body.reveal-ready .commission-section.is-visible .commission-poem p:nth-child(2) { transition-delay: 840ms; }
body.reveal-ready .commission-section.is-visible .commission-poem p:nth-child(3) { transition-delay: 920ms; }
body.reveal-ready .commission-section.is-visible .commission-poem p:nth-child(4) { transition-delay: 1000ms; }
body.reveal-ready .commission-section.is-visible .commission-showcase { transition-delay: 1100ms; }
body.reveal-ready .commission-section.is-visible .craft-choice-intro { transition-delay: 1220ms; }
body.reveal-ready .commission-section.is-visible .commission-choice-card:nth-child(1) { transition-delay: 1320ms; }
body.reveal-ready .commission-section.is-visible .commission-choice-card:nth-child(2) { transition-delay: 1430ms; }
body.reveal-ready .commission-section.is-visible .commission-choice-card:nth-child(3) { transition-delay: 1540ms; }
body.reveal-ready .commission-section.is-visible .commission-choice-card:nth-child(4) { transition-delay: 1650ms; }
body.reveal-ready .commission-section.is-visible .commission-level-card { transition-delay: 1760ms; }
body.reveal-ready .commission-section.is-visible .craft-master-quote { transition-delay: 1880ms; }
body.reveal-ready .commission-section.is-visible .commission-cta { transition-delay: 2000ms; }
body.reveal-ready .commission-section.is-visible .commission-final-line { transition-delay: 2120ms; }

/* Section 11 treats customs as archived house notes: optional, social, and secondary to official rules. */
.traditions-section {
	position: relative;
	padding: 120px 24px 140px;
	overflow: hidden;
	background:
		radial-gradient(circle at 50% 28%, rgba(199, 161, 90, 0.06), transparent 28rem),
		radial-gradient(circle at 70% 58%, rgba(74, 17, 24, 0.1), transparent 30rem),
		linear-gradient(180deg, #070605 0%, #120908 48%, #090706 100%);
	isolation: isolate;
}

.traditions-section::before {
	position: absolute;
	inset: 0;
	z-index: -2;
	content: "";
	background:
		radial-gradient(circle at 18% 22%, rgba(199, 161, 90, 0.08), transparent 2px),
		radial-gradient(circle at 78% 34%, rgba(199, 161, 90, 0.08), transparent 2px),
		radial-gradient(circle at 54% 70%, rgba(199, 161, 90, 0.08), transparent 2px),
		linear-gradient(32deg, transparent 34%, rgba(199, 161, 90, 0.045) 34.15%, transparent 34.3%),
		linear-gradient(118deg, transparent 62%, rgba(199, 161, 90, 0.04) 62.15%, transparent 62.3%),
		repeating-linear-gradient(24deg, rgba(232, 220, 194, 0.022) 0 1px, transparent 1px 8px);
	background-size: 260px 260px, 320px 320px, 360px 360px, 290px 290px, 340px 340px, auto;
	opacity: 0.68;
}

.traditions-header {
	width: min(820px, 100%);
	margin: 0 auto;
	text-align: center;
}

.traditions-header .eyebrow {
	text-align: center;
}

.traditions-header h2 {
	color: var(--color-ivory);
	font-size: clamp(3.25rem, 6vw, 4.5rem);
	letter-spacing: 0.05em;
	line-height: 1.05;
	text-align: center;
	text-shadow: 0 20px 52px rgba(0, 0, 0, 0.5);
}

.traditions-intro {
	margin-top: 30px;
	color: var(--color-parchment);
	font-family: var(--font-serif);
	font-size: clamp(1.05rem, 1.32vw, 1.18rem);
	line-height: 1.75;
}

.traditions-intro p {
	margin: 0 0 16px;
}

.traditions-poem {
	margin: 30px auto;
	color: var(--color-ivory);
	font-family: var(--font-serif);
	font-size: clamp(1.22rem, 2.2vw, 1.75rem);
	font-style: italic;
	line-height: 1.8;
	text-align: center;
}

.traditions-poem p {
	margin: 0;
}

.traditions-notice {
	width: min(780px, 100%);
	margin: 40px auto 0;
	padding: 18px 24px;
	border: 1px solid rgba(199, 161, 90, 0.22);
	border-left: 3px solid var(--color-gold);
	border-radius: 8px;
	color: var(--color-ivory);
	background: rgba(199, 161, 90, 0.06);
	font-family: var(--font-serif);
	font-size: 1.04rem;
	line-height: 1.6;
	text-align: center;
}

.traditions-notice span {
	display: block;
	margin-bottom: 8px;
	color: var(--color-gold);
	font-family: Georgia, serif;
}

.traditions-notice p {
	margin: 0;
}

.traditions-archive {
	position: relative;
	width: min(var(--site-medium-max), 100%);
	min-height: clamp(300px, 35vw, 380px);
	margin: 56px auto 52px;
	border: 1px solid rgba(199, 161, 90, 0.22);
	border-radius: 14px;
	background:
		radial-gradient(circle at 34% 34%, rgba(199, 161, 90, 0.16), transparent 18rem),
		linear-gradient(145deg, rgba(54, 29, 19, 0.9), rgba(7, 5, 4, 0.96));
	box-shadow: 0 30px 100px rgba(0, 0, 0, 0.62), inset 0 0 80px rgba(0, 0, 0, 0.48);
	overflow: hidden;
}

.traditions-archive img {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.traditions-archive::before {
	position: absolute;
	inset: 0;
	z-index: 3;
	content: "";
	background:
		linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.78) 100%),
		radial-gradient(ellipse at center, transparent 44%, rgba(0, 0, 0, 0.66) 100%);
	pointer-events: none;
}

.traditions-map {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.map-label {
	position: absolute;
	color: rgba(199, 161, 90, 0.18);
	font-family: var(--font-body);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.map-rome { left: 18%; top: 24%; }
.map-england { left: 48%; top: 20%; }
.map-france { right: 18%; top: 36%; }

.archive-note {
	position: absolute;
	width: 28%;
	height: 30%;
	border: 1px solid rgba(199, 161, 90, 0.16);
	border-radius: 4px;
	background:
		linear-gradient(112deg, rgba(232, 220, 194, 0.52), rgba(171, 134, 77, 0.2)),
		repeating-linear-gradient(0deg, rgba(45, 26, 16, 0.16) 0 1px, transparent 1px 16px);
	box-shadow: 0 20px 42px rgba(0, 0, 0, 0.34);
	opacity: 0.78;
}

.note-one {
	left: 20%;
	top: 34%;
	transform: rotate(-7deg);
}

.note-two {
	right: 20%;
	top: 28%;
	transform: rotate(9deg);
}

.archive-die {
	position: absolute;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border: 1px solid rgba(83, 43, 23, 0.88);
	border-radius: 12px;
	color: #21110d;
	background:
		radial-gradient(circle at 28% 24%, rgba(255, 238, 190, 0.76), transparent 34%),
		linear-gradient(145deg, #c89251, #7b421f 64%, #3b1d10);
	box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.11), inset -8px -12px 22px rgba(0, 0, 0, 0.35), 0 16px 23px rgba(0, 0, 0, 0.45);
	font-family: Georgia, serif;
	font-size: 1.7rem;
}

.archive-crown { left: 42%; top: 46%; transform: rotate(-10deg); }
.archive-moon { right: 30%; bottom: 22%; transform: rotate(18deg) scale(0.82); }
.archive-star { left: 28%; bottom: 20%; transform: rotate(14deg) scale(0.78); }

.archive-hourglass {
	position: absolute;
	right: 14%;
	top: 22%;
	width: 42px;
	height: 86px;
	border-top: 4px solid rgba(199, 161, 90, 0.82);
	border-bottom: 4px solid rgba(199, 161, 90, 0.82);
}

.archive-hourglass::before {
	position: absolute;
	inset: 8px;
	content: "";
	border: 1px solid rgba(232, 220, 194, 0.28);
	clip-path: polygon(0 0, 100% 0, 57% 50%, 100% 100%, 0 100%, 43% 50%);
}

.archive-book {
	position: absolute;
	left: 10%;
	bottom: 16%;
	width: 150px;
	height: 90px;
	border: 1px solid rgba(199, 161, 90, 0.18);
	border-radius: 8px;
	background: linear-gradient(120deg, rgba(88, 40, 27, 0.62), rgba(18, 9, 7, 0.95));
	transform: rotate(7deg);
}

.archive-label {
	position: absolute;
	left: 28px;
	bottom: 28px;
	z-index: 5;
	padding: 14px 18px;
	border: 1px solid rgba(199, 161, 90, 0.22);
	border-radius: 6px;
	background: rgba(7, 6, 6, 0.76);
}

.archive-label strong {
	display: block;
	margin-bottom: 6px;
	color: var(--color-gold);
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.archive-label em {
	color: var(--color-ivory);
	font-family: var(--font-serif);
	font-size: 1rem;
}

.tradition-tabs {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin: 52px auto 42px;
}

.tradition-tabs button {
	min-width: 150px;
	padding: 12px 22px;
	border: 1px solid rgba(199, 161, 90, 0.22);
	border-radius: 999px;
	color: var(--color-parchment);
	background: transparent;
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.tradition-tabs button:hover,
.tradition-tabs button:focus-visible {
	border-color: rgba(199, 161, 90, 0.44);
	color: var(--color-ivory);
}

.tradition-tabs button.is-active {
	border-color: rgba(199, 161, 90, 0.5);
	color: var(--color-gold);
	background: rgba(199, 161, 90, 0.12);
}

.customs-panel {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	width: min(1100px, 100%);
	margin: 0 auto;
}

.customs-panel[hidden] {
	display: none;
}

.custom-card {
	position: relative;
	padding: clamp(30px, 3vw, 36px);
	border: 1px solid rgba(199, 161, 90, 0.16);
	border-radius: 12px;
	background:
		radial-gradient(circle at 90% 8%, rgba(199, 161, 90, 0.035), transparent 10rem),
		linear-gradient(180deg, rgba(21, 15, 11, 0.96), rgba(9, 7, 6, 0.99));
	box-shadow: 0 26px 80px rgba(0, 0, 0, 0.48);
	transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.custom-card:hover,
.custom-card:focus-within {
	border-color: rgba(199, 161, 90, 0.5);
	box-shadow: 0 32px 90px rgba(0, 0, 0, 0.56), 0 0 28px rgba(199, 161, 90, 0.08);
	transform: translateY(-4px);
}

.custom-card-feature {
	grid-column: 1 / -1;
	border-color: rgba(199, 161, 90, 0.3);
	background:
		radial-gradient(circle at 50% 0%, rgba(199, 161, 90, 0.045), transparent 18rem),
		linear-gradient(180deg, rgba(21, 15, 11, 0.96), rgba(9, 7, 6, 0.99));
}

.custom-label {
	display: inline-block;
	margin-bottom: 10px;
	color: #a78344;
	font-family: var(--font-body);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.custom-icon {
	position: absolute;
	right: 24px;
	top: 24px;
	color: var(--color-gold);
	font-family: Georgia, serif;
	font-size: 1.5rem;
	line-height: 1;
	opacity: 0.7;
	transition: opacity 160ms ease, filter 160ms ease;
}

.custom-icon-img {
	position: absolute;
	right: 22px;
	top: 22px;
	width: 46px;
	height: 46px;
	object-fit: contain;
	object-position: center;
	opacity: 0.72;
	filter: drop-shadow(0 0 12px rgba(199, 161, 90, 0.12));
	transition: opacity 160ms ease, filter 160ms ease, transform 160ms ease;
}

.custom-card:hover .custom-icon,
.custom-card:focus-within .custom-icon {
	opacity: 1;
	filter: drop-shadow(0 0 14px rgba(199, 161, 90, 0.22));
}

.custom-card:hover .custom-icon-img,
.custom-card:focus-within .custom-icon-img {
	opacity: 1;
	filter: drop-shadow(0 0 18px rgba(199, 161, 90, 0.25));
	transform: translateY(-1px);
}

.custom-card h3 {
	margin: 0 0 16px;
	color: var(--color-ivory);
	font-family: var(--font-title);
	font-size: clamp(1.62rem, 2.8vw, 2.12rem);
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.15;
	text-transform: uppercase;
}

.custom-card p {
	margin: 0 0 14px;
	color: var(--color-parchment);
	font-family: var(--font-serif);
	font-size: 1rem;
	line-height: 1.7;
}

.custom-rule,
.best-for {
	margin-top: 22px;
}

.custom-rule strong,
.best-for strong {
	display: block;
	margin-bottom: 8px;
	color: #a78344;
	font-family: var(--font-body);
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.custom-rule p {
	color: var(--color-ivory);
	font-style: italic;
}

.best-for p {
	color: #958a75;
	font-size: 0.94rem;
	line-height: 1.55;
}

.hourglass-small,
.balanced-glass,
.long-glass,
.short-glass {
	width: 26px;
	height: 42px;
	border-top: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
}

.hourglass-small::before,
.balanced-glass::before,
.long-glass::before,
.short-glass::before {
	position: absolute;
	inset: 6px 5px;
	content: "";
	border: 1px solid currentColor;
	clip-path: polygon(0 0, 100% 0, 56% 50%, 100% 100%, 0 100%, 44% 50%);
}

.long-glass {
	height: 52px;
}

.short-glass {
	height: 32px;
}

.four-glasses {
	display: grid;
	grid-template-columns: repeat(2, 8px);
	gap: 4px;
}

.four-glasses i {
	width: 8px;
	height: 16px;
	border-top: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
}

.crown-circle,
.pool-circle {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(199, 161, 90, 0.34);
	border-radius: 50%;
}

.traditions-closing {
	width: min(880px, 100%);
	margin: 64px auto 0;
	padding: clamp(36px, 4vw, 46px);
	border: 1px solid rgba(199, 161, 90, 0.18);
	border-radius: 10px;
	color: var(--color-parchment);
	background: rgba(232, 220, 194, 0.035);
	font-family: var(--font-serif);
	font-size: clamp(1.05rem, 1.35vw, 1.18rem);
	line-height: 1.75;
	text-align: center;
}

.traditions-closing p {
	margin: 0 0 16px;
}

.traditions-closing-lines {
	margin-bottom: 24px;
	color: var(--color-ivory);
	font-size: clamp(1.45rem, 2.7vw, 1.88rem);
	font-style: italic;
	line-height: 1.7;
}

.traditions-closing-lines p {
	margin: 0;
}

.traditions-final-line {
	position: relative;
	width: min(900px, 100%);
	margin: 46px auto 0;
	color: var(--color-gold);
	font-family: var(--font-serif);
	font-size: clamp(1.55rem, 3vw, 2.12rem);
	font-style: italic;
	line-height: 1.35;
	text-align: center;
}

.traditions-final-line::after {
	display: block;
	width: 120px;
	height: 1px;
	margin: 20px auto 0;
	content: "";
	background: rgba(199, 161, 90, 0.45);
}

body.reveal-ready .traditions-section .eyebrow,
body.reveal-ready .traditions-section h2,
body.reveal-ready .traditions-intro > p,
body.reveal-ready .traditions-poem p,
body.reveal-ready .traditions-notice,
body.reveal-ready .traditions-archive,
body.reveal-ready .tradition-tabs,
body.reveal-ready .custom-card,
body.reveal-ready .traditions-closing,
body.reveal-ready .traditions-final-line {
	opacity: 0;
	transform: translateY(18px);
}

body.reveal-ready .traditions-archive {
	filter: brightness(0.45);
}

body.reveal-ready .traditions-section.is-visible .eyebrow,
body.reveal-ready .traditions-section.is-visible h2,
body.reveal-ready .traditions-section.is-visible .traditions-intro > p,
body.reveal-ready .traditions-section.is-visible .traditions-poem p,
body.reveal-ready .traditions-section.is-visible .traditions-notice,
body.reveal-ready .traditions-section.is-visible .traditions-archive,
body.reveal-ready .traditions-section.is-visible .tradition-tabs,
body.reveal-ready .traditions-section.is-visible .custom-card,
body.reveal-ready .traditions-section.is-visible .traditions-closing,
body.reveal-ready .traditions-section.is-visible .traditions-final-line {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 760ms ease, transform 920ms cubic-bezier(0.19, 1, 0.22, 1), filter 900ms ease;
}

body.reveal-ready .traditions-section.is-visible .traditions-archive {
	filter: brightness(1);
}

body.reveal-ready .traditions-section.is-visible .eyebrow { transition-delay: 80ms; }
body.reveal-ready .traditions-section.is-visible h2 { transition-delay: 180ms; }
body.reveal-ready .traditions-section.is-visible .traditions-intro > p:nth-child(1) { transition-delay: 300ms; }
body.reveal-ready .traditions-section.is-visible .traditions-poem p:nth-child(1) { transition-delay: 390ms; }
body.reveal-ready .traditions-section.is-visible .traditions-poem p:nth-child(2) { transition-delay: 480ms; }
body.reveal-ready .traditions-section.is-visible .traditions-poem p:nth-child(3) { transition-delay: 570ms; }
body.reveal-ready .traditions-section.is-visible .traditions-intro > p:nth-child(n+3) { transition-delay: 660ms; }
body.reveal-ready .traditions-section.is-visible .traditions-notice { transition-delay: 780ms; }
body.reveal-ready .traditions-section.is-visible .traditions-archive { transition-delay: 900ms; }
body.reveal-ready .traditions-section.is-visible .tradition-tabs { transition-delay: 1040ms; }
body.reveal-ready .traditions-section.is-visible .custom-card:nth-child(1) { transition-delay: 1140ms; }
body.reveal-ready .traditions-section.is-visible .custom-card:nth-child(2) { transition-delay: 1220ms; }
body.reveal-ready .traditions-section.is-visible .custom-card:nth-child(3) { transition-delay: 1300ms; }
body.reveal-ready .traditions-section.is-visible .custom-card:nth-child(n+4) { transition-delay: 1380ms; }
body.reveal-ready .traditions-section.is-visible .traditions-closing { transition-delay: 1520ms; }
body.reveal-ready .traditions-section.is-visible .traditions-final-line { transition-delay: 1640ms; }

/* Section 12 is the calm chamber of clarity: practical answers after the world has unfolded. */
.faq-section {
	position: relative;
	padding: 120px 24px 140px;
	overflow: hidden;
	background:
		radial-gradient(circle at 50% 20%, rgba(199, 161, 90, 0.06), transparent 26rem),
		radial-gradient(circle at 66% 58%, rgba(58, 15, 22, 0.08), transparent 30rem),
		linear-gradient(180deg, #080706 0%, #0e0908 48%, #060504 100%);
	isolation: isolate;
}

.faq-section::before {
	position: absolute;
	inset: 0;
	z-index: -2;
	content: "";
	background:
		radial-gradient(circle, rgba(232, 220, 194, 0.12) 0 1px, transparent 1.5px),
		radial-gradient(circle, rgba(199, 161, 90, 0.09) 0 1px, transparent 1.5px),
		linear-gradient(90deg, transparent 12%, rgba(199, 161, 90, 0.035) 12.08%, transparent 12.16%),
		repeating-linear-gradient(0deg, rgba(232, 220, 194, 0.018) 0 1px, transparent 1px 19px);
	background-position: 3rem 5rem, 12rem 8rem, 0 0, 0 0;
	background-size: 20rem 20rem, 27rem 27rem, 18rem 18rem, auto;
	opacity: 0.54;
}

.faq-header {
	width: min(780px, 100%);
	margin: 0 auto;
	text-align: center;
}

.faq-header .eyebrow {
	text-align: center;
}

.faq-header h2 {
	color: var(--color-ivory);
	font-size: clamp(3.25rem, 6vw, 4.5rem);
	letter-spacing: 0.05em;
	line-height: 1.05;
	text-align: center;
	text-shadow: 0 20px 52px rgba(0, 0, 0, 0.5);
}

.faq-intro {
	margin-top: 30px;
	color: var(--color-parchment);
	font-family: var(--font-serif);
	font-size: clamp(1.05rem, 1.32vw, 1.18rem);
	line-height: 1.75;
}

.faq-intro p {
	margin: 0 0 16px;
}

.faq-poem {
	margin: 28px auto;
	color: var(--color-ivory);
	font-family: var(--font-serif);
	font-size: clamp(1.22rem, 2vw, 1.56rem);
	font-style: italic;
	line-height: 1.8;
	text-align: center;
}

.faq-poem p {
	margin: 0;
}

.faq-notice {
	width: min(780px, 100%);
	margin: 40px auto 0;
	padding: 18px 24px;
	border: 1px solid rgba(199, 161, 90, 0.2);
	border-left: 3px solid var(--color-gold);
	border-radius: 8px;
	color: var(--color-ivory);
	background: rgba(199, 161, 90, 0.055);
	font-family: var(--font-serif);
	font-size: 1.04rem;
	line-height: 1.6;
	text-align: center;
}

.faq-notice span {
	display: block;
	margin-bottom: 8px;
	color: var(--color-gold);
	font-family: Georgia, serif;
}

.faq-notice p {
	margin: 0;
}

.faq-banner {
	position: relative;
	width: min(var(--site-medium-max), 100%);
	min-height: clamp(260px, 30vw, 340px);
	margin: 54px auto 46px;
	border: 1px solid rgba(199, 161, 90, 0.2);
	border-radius: 14px;
	background:
		radial-gradient(circle at 34% 34%, rgba(199, 161, 90, 0.14), transparent 18rem),
		linear-gradient(145deg, rgba(52, 29, 19, 0.9), rgba(7, 5, 4, 0.96));
	box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55), inset 0 0 76px rgba(0, 0, 0, 0.46);
	overflow: hidden;
}

.faq-banner img {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.faq-banner::before {
	position: absolute;
	inset: 0;
	z-index: 3;
	content: "";
	background:
		linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.78) 100%),
		radial-gradient(ellipse at center, transparent 46%, rgba(0, 0, 0, 0.62) 100%);
	pointer-events: none;
}

.faq-banner-scene {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.faq-rulebook {
	position: absolute;
	left: 22%;
	top: 25%;
	width: 34%;
	height: 42%;
	border: 1px solid rgba(199, 161, 90, 0.18);
	border-radius: 4px;
	background:
		linear-gradient(112deg, rgba(232, 220, 194, 0.58), rgba(171, 134, 77, 0.22)),
		repeating-linear-gradient(0deg, rgba(45, 26, 16, 0.16) 0 1px, transparent 1px 16px);
	transform: rotate(-7deg);
}

.faq-crown,
.faq-score-die {
	position: absolute;
	display: grid;
	place-items: center;
	width: 62px;
	height: 62px;
	border: 1px solid rgba(83, 43, 23, 0.88);
	border-radius: 12px;
	color: #21110d;
	background:
		radial-gradient(circle at 28% 24%, rgba(255, 238, 190, 0.76), transparent 34%),
		linear-gradient(145deg, #c89251, #7b421f 64%, #3b1d10);
	font-family: Georgia, serif;
	font-size: 1.9rem;
}

.faq-crown {
	left: 47%;
	top: 48%;
	width: 74px;
	height: 74px;
	font-size: 2.3rem;
	transform: rotate(12deg);
}

.faq-score-die {
	right: 24%;
	bottom: 28%;
	transform: rotate(-12deg) scale(0.8);
}

.faq-score-star {
	right: 19%;
	bottom: 24%;
	transform: rotate(14deg) scale(0.74);
}

.faq-hourglass {
	position: absolute;
	right: 18%;
	top: 24%;
	width: 42px;
	height: 86px;
	border-top: 4px solid rgba(199, 161, 90, 0.82);
	border-bottom: 4px solid rgba(199, 161, 90, 0.82);
	opacity: 0.76;
}

.faq-hourglass::before {
	position: absolute;
	inset: 8px;
	content: "";
	border: 1px solid rgba(232, 220, 194, 0.28);
	clip-path: polygon(0 0, 100% 0, 57% 50%, 100% 100%, 0 100%, 43% 50%);
}

.faq-case {
	position: absolute;
	left: 10%;
	bottom: 18%;
	width: 160px;
	height: 80px;
	border: 1px solid rgba(199, 161, 90, 0.16);
	border-radius: 10px;
	background: linear-gradient(120deg, rgba(88, 40, 27, 0.58), rgba(18, 9, 7, 0.95));
	transform: rotate(8deg);
}

.faq-banner-label {
	position: absolute;
	left: 28px;
	bottom: 28px;
	z-index: 5;
	padding: 14px 18px;
	border: 1px solid rgba(199, 161, 90, 0.22);
	border-radius: 6px;
	background: rgba(7, 6, 6, 0.74);
}

.faq-banner-label strong {
	display: block;
	margin-bottom: 6px;
	color: var(--color-gold);
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.faq-banner-label em {
	color: var(--color-ivory);
	font-family: var(--font-serif);
	font-size: 1rem;
}

.faq-tools {
	width: min(720px, 100%);
	margin: 0 auto 36px;
	text-align: center;
}

.faq-tools label {
	display: block;
	margin-bottom: 10px;
	color: #a78344;
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.faq-search {
	width: min(520px, 100%);
	min-height: 48px;
	padding: 14px 16px;
	border: 1px solid rgba(199, 161, 90, 0.22);
	border-radius: 6px;
	color: var(--color-ivory);
	background: #090706;
	font: inherit;
}

.faq-search::placeholder {
	color: #827761;
}

.faq-filter-chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 16px;
}

.faq-filter-chips button {
	min-height: 44px;
	padding: 10px 15px;
	border: 1px solid rgba(199, 161, 90, 0.18);
	border-radius: 999px;
	color: var(--color-parchment);
	background: transparent;
	font-family: var(--font-body);
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.faq-filter-chips button:hover,
.faq-filter-chips button:focus-visible {
	border-color: rgba(199, 161, 90, 0.42);
	color: var(--color-ivory);
}

.faq-filter-chips button.is-active {
	border-color: rgba(199, 161, 90, 0.48);
	color: var(--color-gold);
	background: rgba(199, 161, 90, 0.12);
}

.faq-no-results {
	margin: 24px 0;
	color: var(--color-gold);
	font-family: var(--font-serif);
	font-size: 1.12rem;
	font-style: italic;
	text-align: center;
}

.faq-grid {
	column-count: 2;
	column-gap: 22px;
	width: min(var(--site-max), 100%);
	margin: 0 auto;
}

.faq-column {
	display: contents;
}

.faq-category {
	break-after: avoid;
	break-inside: avoid;
	display: block;
	margin: 22px 0 12px;
	color: #a78344;
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.faq-category img {
	width: 22px;
	height: 22px;
	margin-right: 8px;
	object-fit: contain;
	vertical-align: middle;
	filter: drop-shadow(0 0 10px rgba(199, 161, 90, 0.12));
}

.faq-column .faq-category:first-child {
	margin-top: 0;
}

.faq-item {
	break-inside: avoid;
	display: inline-block;
	width: 100%;
	margin: 0 0 14px;
	border: 1px solid rgba(199, 161, 90, 0.15);
	border-radius: 10px;
	background:
		linear-gradient(180deg, rgba(20, 14, 10, 0.96), rgba(8, 7, 6, 0.99));
	box-shadow: 0 20px 65px rgba(0, 0, 0, 0.4);
	overflow: hidden;
	transition: border-color 180ms ease, opacity 200ms ease;
}

.faq-item[hidden] {
	display: none;
}

.faq-item:hover,
.faq-item:focus-within,
.faq-item.is-open {
	border-color: rgba(199, 161, 90, 0.42);
}

.faq-item.is-open {
	border-left-color: rgba(199, 161, 90, 0.65);
}

.faq-question {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 18px;
	align-items: center;
	width: 100%;
	padding: 20px 24px;
	border: 0;
	color: var(--color-ivory);
	background: transparent;
	cursor: pointer;
	font-family: var(--font-serif);
	font-size: clamp(1.18rem, 2vw, 1.44rem);
	line-height: 1.35;
	text-align: left;
}

.faq-question i {
	color: var(--color-gold);
	font-family: Georgia, serif;
	font-size: 1.35rem;
	font-style: normal;
	transition: filter 160ms ease;
}

.faq-question:hover i,
.faq-question:focus-visible i {
	filter: drop-shadow(0 0 12px rgba(199, 161, 90, 0.24));
}

.faq-answer {
	padding: 18px 24px 24px;
	border-top: 1px solid rgba(199, 161, 90, 0.12);
	color: var(--color-parchment);
	font-family: var(--font-serif);
	font-size: 1rem;
	line-height: 1.7;
}

.faq-answer p {
	margin: 0 0 14px;
}

.faq-answer p:last-child {
	margin-bottom: 0;
}

.faq-closing {
	width: min(840px, 100%);
	margin: 64px auto 0;
	padding: clamp(34px, 4vw, 44px);
	border: 1px solid rgba(199, 161, 90, 0.18);
	border-radius: 10px;
	color: var(--color-parchment);
	background: rgba(232, 220, 194, 0.032);
	font-family: var(--font-serif);
	font-size: clamp(1.05rem, 1.35vw, 1.18rem);
	line-height: 1.75;
	text-align: center;
}

.faq-closing p {
	margin: 0 0 16px;
}

.faq-final-line {
	position: relative;
	width: min(900px, 100%);
	margin: 44px auto 0;
	color: var(--color-gold);
	font-family: var(--font-serif);
	font-size: clamp(1.55rem, 3vw, 2.12rem);
	font-style: italic;
	line-height: 1.35;
	text-align: center;
}

.faq-final-line::after {
	display: block;
	width: 120px;
	height: 1px;
	margin: 20px auto 0;
	content: "";
	background: rgba(199, 161, 90, 0.45);
}

body.reveal-ready .faq-section .eyebrow,
body.reveal-ready .faq-section h2,
body.reveal-ready .faq-intro > p,
body.reveal-ready .faq-poem p,
body.reveal-ready .faq-notice,
body.reveal-ready .faq-banner,
body.reveal-ready .faq-tools,
body.reveal-ready .faq-item,
body.reveal-ready .faq-closing,
body.reveal-ready .faq-final-line {
	opacity: 0;
	transform: translateY(18px);
}

body.reveal-ready .faq-banner {
	filter: brightness(0.45);
}

body.reveal-ready .faq-section.is-visible .eyebrow,
body.reveal-ready .faq-section.is-visible h2,
body.reveal-ready .faq-section.is-visible .faq-intro > p,
body.reveal-ready .faq-section.is-visible .faq-poem p,
body.reveal-ready .faq-section.is-visible .faq-notice,
body.reveal-ready .faq-section.is-visible .faq-banner,
body.reveal-ready .faq-section.is-visible .faq-tools,
body.reveal-ready .faq-section.is-visible .faq-item,
body.reveal-ready .faq-section.is-visible .faq-closing,
body.reveal-ready .faq-section.is-visible .faq-final-line {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 760ms ease, transform 920ms cubic-bezier(0.19, 1, 0.22, 1), filter 900ms ease;
}

body.reveal-ready .faq-section.is-visible .faq-banner {
	filter: brightness(1);
}

body.reveal-ready .faq-section.is-visible .eyebrow { transition-delay: 80ms; }
body.reveal-ready .faq-section.is-visible h2 { transition-delay: 180ms; }
body.reveal-ready .faq-section.is-visible .faq-intro > p:nth-child(1) { transition-delay: 300ms; }
body.reveal-ready .faq-section.is-visible .faq-poem p:nth-child(1) { transition-delay: 390ms; }
body.reveal-ready .faq-section.is-visible .faq-poem p:nth-child(2) { transition-delay: 470ms; }
body.reveal-ready .faq-section.is-visible .faq-poem p:nth-child(3) { transition-delay: 550ms; }
body.reveal-ready .faq-section.is-visible .faq-intro > p:nth-child(3) { transition-delay: 640ms; }
body.reveal-ready .faq-section.is-visible .faq-notice { transition-delay: 760ms; }
body.reveal-ready .faq-section.is-visible .faq-banner { transition-delay: 880ms; }
body.reveal-ready .faq-section.is-visible .faq-tools { transition-delay: 1000ms; }
body.reveal-ready .faq-section.is-visible .faq-item:nth-of-type(1) { transition-delay: 1080ms; }
body.reveal-ready .faq-section.is-visible .faq-item:nth-of-type(2) { transition-delay: 1140ms; }
body.reveal-ready .faq-section.is-visible .faq-item:nth-of-type(n+3) { transition-delay: 1200ms; }
body.reveal-ready .faq-section.is-visible .faq-closing { transition-delay: 1400ms; }
body.reveal-ready .faq-section.is-visible .faq-final-line { transition-delay: 1520ms; }

.site-footer {
	position: relative;
	min-height: 80vh;
	padding: 120px 24px 0;
	overflow: hidden;
	background:
		radial-gradient(circle at 50% 24%, rgba(199, 161, 90, 0.08), transparent 30rem),
		radial-gradient(circle at 50% 32%, rgba(58, 15, 22, 0.14), transparent 34rem),
		linear-gradient(180deg, #070606 0%, #040303 58%, #000000 100%);
	isolation: isolate;
}

.site-footer::before {
	position: absolute;
	inset: 0;
	z-index: -3;
	content: "";
	background:
		repeating-linear-gradient(28deg, rgba(232, 220, 194, 0.022) 0 1px, transparent 1px 7px),
		repeating-linear-gradient(112deg, rgba(199, 161, 90, 0.018) 0 1px, transparent 1px 9px);
	opacity: 0.5;
}

.footer-background-image {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.footer-background-scene {
	position: absolute;
	inset: 0;
	z-index: -2;
	opacity: 0.34;
	transform: translate3d(var(--footer-parallax-x, 0), var(--footer-parallax-y, 0), 0);
	transition: transform 240ms ease-out;
}

.footer-background-scene::before {
	position: absolute;
	inset: 0;
	content: "";
	background: rgba(0, 0, 0, 0.58);
}

.footer-case {
	position: absolute;
	left: 50%;
	top: 28%;
	width: min(640px, 82vw);
	height: 210px;
	border: 1px solid rgba(199, 161, 90, 0.18);
	border-radius: 22px;
	background:
		linear-gradient(120deg, rgba(91, 42, 27, 0.58), rgba(14, 8, 7, 0.98)),
		repeating-linear-gradient(32deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 7px);
	box-shadow: inset 0 0 42px rgba(0, 0, 0, 0.68), 0 28px 70px rgba(0, 0, 0, 0.55);
	transform: translateX(-50%) rotate(-3deg);
}

.footer-case::before {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 92px;
	height: 42px;
	content: "";
	border: 1px solid rgba(199, 161, 90, 0.28);
	border-radius: 6px;
	transform: translate(-50%, -50%);
}

.footer-crown-die {
	position: absolute;
	left: 55%;
	top: 48%;
	display: grid;
	place-items: center;
	width: 78px;
	height: 78px;
	border: 1px solid rgba(83, 43, 23, 0.88);
	border-radius: 14px;
	color: #21110d;
	background:
		radial-gradient(circle at 28% 24%, rgba(255, 238, 190, 0.76), transparent 34%),
		linear-gradient(145deg, #c89251, #7b421f 64%, #3b1d10);
	box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.11), inset -8px -12px 22px rgba(0, 0, 0, 0.35), 0 16px 23px rgba(0, 0, 0, 0.45);
	font-family: Georgia, serif;
	font-size: 2.35rem;
	transform: rotate(10deg);
}

.footer-hourglass {
	position: absolute;
	right: 23%;
	top: 38%;
	width: 42px;
	height: 86px;
	border-top: 4px solid rgba(199, 161, 90, 0.82);
	border-bottom: 4px solid rgba(199, 161, 90, 0.82);
}

.footer-hourglass::before {
	position: absolute;
	inset: 8px;
	content: "";
	border: 1px solid rgba(232, 220, 194, 0.28);
	clip-path: polygon(0 0, 100% 0, 57% 50%, 100% 100%, 0 100%, 43% 50%);
}

.footer-star-map {
	position: absolute;
	left: 50%;
	top: 17%;
	width: min(520px, 78vw);
	height: min(520px, 78vw);
	border: 1px solid rgba(199, 161, 90, 0.08);
	border-radius: 50%;
	transform: translateX(-50%);
}

.footer-star-map::before,
.footer-star-map::after {
	position: absolute;
	content: "";
	border: 1px solid rgba(199, 161, 90, 0.045);
	border-radius: 50%;
}

.footer-star-map::before {
	inset: 12%;
}

.footer-star-map::after {
	inset: 28%;
}

.footer-invitation {
	position: relative;
	z-index: 1;
	width: min(760px, 100%);
	margin: 0 auto;
	text-align: center;
}

.footer-invitation .eyebrow {
	margin-bottom: 22px;
	text-align: center;
}

.footer-logo {
	display: inline-flex;
	width: clamp(96px, 12vw, 150px);
	height: clamp(96px, 12vw, 150px);
	filter: drop-shadow(0 0 34px rgba(199, 161, 90, 0.16));
}

.footer-logo img {
	width: 100%;
	height: 100%;
}

.footer-invitation h2 {
	margin-top: 22px;
	color: var(--color-ivory);
	font-family: var(--font-title);
	font-size: clamp(3.38rem, 6vw, 4.75rem);
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1.05;
	text-transform: uppercase;
}

.footer-copy {
	margin-top: 28px;
	color: var(--color-parchment);
	font-family: var(--font-serif);
	font-size: clamp(1.08rem, 1.6vw, 1.32rem);
	line-height: 1.75;
}

.footer-copy p {
	margin: 0;
}

.footer-poem {
	margin-bottom: 22px;
	color: var(--color-ivory);
	font-size: clamp(1.32rem, 2.6vw, 2rem);
	font-style: italic;
	line-height: 1.8;
}

.footer-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	align-items: center;
	margin-top: 42px;
}

.footer-text-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 16px;
	color: #827761;
	font-family: var(--font-body);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: color 160ms ease;
}

.footer-text-link:hover,
.footer-text-link:focus-visible {
	color: var(--color-gold);
}

.footer-motto {
	margin: 54px auto 0;
	padding: 26px 0;
	border-top: 1px solid rgba(199, 161, 90, 0.42);
	border-bottom: 1px solid rgba(199, 161, 90, 0.42);
	color: var(--color-gold);
	font-family: var(--font-serif);
	font-size: clamp(1.45rem, 3vw, 2.12rem);
	font-style: italic;
	line-height: 1.45;
}

.footer-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	width: min(var(--site-medium-max), 100%);
	margin: 76px auto 48px;
	color: rgba(199, 161, 90, 0.6);
}

.footer-divider span {
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(199, 161, 90, 0.28), transparent);
}

.footer-divider strong {
	font-family: Georgia, serif;
	font-weight: 400;
}

.footer-nav {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	width: min(var(--site-medium-max), 100%);
	margin: 0 auto;
	padding-bottom: 58px;
}

.footer-group-toggle {
	margin: 0 0 18px;
	padding: 0;
	border: 0;
	color: var(--color-gold);
	background: transparent;
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-align: left;
	text-transform: uppercase;
}

.footer-group-links {
	display: grid;
	gap: 10px;
}

.footer-group-links a {
	color: var(--color-parchment);
	font-family: var(--font-serif);
	font-size: 1rem;
	line-height: 1.45;
	transition: color 160ms ease, transform 160ms ease;
}

.footer-group-links a:hover,
.footer-group-links a:focus-visible {
	color: var(--color-ivory);
	transform: translateX(2px);
}

.footer-legal {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) auto;
	gap: 18px;
	align-items: center;
	margin: 0 -24px;
	padding: 24px;
	border-top: 1px solid rgba(199, 161, 90, 0.12);
	color: #6f6655;
	background: #020202;
	font-family: var(--font-body);
	font-size: 0.78rem;
	line-height: 1.6;
}

.footer-legal p {
	margin: 0;
}

.footer-legal a {
	color: #827761;
	transition: color 160ms ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
	color: var(--color-gold);
}

body.reveal-ready .site-footer .eyebrow,
body.reveal-ready .footer-logo,
body.reveal-ready .footer-invitation h2,
body.reveal-ready .footer-poem p,
body.reveal-ready .footer-copy > p,
body.reveal-ready .footer-actions,
body.reveal-ready .footer-motto,
body.reveal-ready .footer-divider,
body.reveal-ready .footer-link-group,
body.reveal-ready .footer-legal {
	opacity: 0;
	transform: translateY(18px);
}

body.reveal-ready .footer-background-scene {
	opacity: 0;
}

body.reveal-ready .site-footer.is-visible .eyebrow,
body.reveal-ready .site-footer.is-visible .footer-logo,
body.reveal-ready .site-footer.is-visible .footer-invitation h2,
body.reveal-ready .site-footer.is-visible .footer-poem p,
body.reveal-ready .site-footer.is-visible .footer-copy > p,
body.reveal-ready .site-footer.is-visible .footer-actions,
body.reveal-ready .site-footer.is-visible .footer-motto,
body.reveal-ready .site-footer.is-visible .footer-divider,
body.reveal-ready .site-footer.is-visible .footer-link-group,
body.reveal-ready .site-footer.is-visible .footer-legal {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 760ms ease, transform 920ms cubic-bezier(0.19, 1, 0.22, 1);
}

body.reveal-ready .site-footer.is-visible .footer-background-scene {
	opacity: 0.34;
	transition: opacity 1000ms ease;
}

body.reveal-ready .site-footer.is-visible .eyebrow { transition-delay: 80ms; }
body.reveal-ready .site-footer.is-visible .footer-logo { transition-delay: 180ms; }
body.reveal-ready .site-footer.is-visible .footer-invitation h2 { transition-delay: 300ms; }
body.reveal-ready .site-footer.is-visible .footer-poem p:nth-child(1) { transition-delay: 430ms; }
body.reveal-ready .site-footer.is-visible .footer-poem p:nth-child(2) { transition-delay: 520ms; }
body.reveal-ready .site-footer.is-visible .footer-poem p:nth-child(3) { transition-delay: 610ms; }
body.reveal-ready .site-footer.is-visible .footer-copy > p { transition-delay: 720ms; }
body.reveal-ready .site-footer.is-visible .footer-actions { transition-delay: 860ms; }
body.reveal-ready .site-footer.is-visible .footer-motto { transition-delay: 1030ms; }
body.reveal-ready .site-footer.is-visible .footer-divider { transition-delay: 1180ms; }
body.reveal-ready .site-footer.is-visible .footer-link-group:nth-child(1) { transition-delay: 1280ms; }
body.reveal-ready .site-footer.is-visible .footer-link-group:nth-child(2) { transition-delay: 1360ms; }
body.reveal-ready .site-footer.is-visible .footer-link-group:nth-child(3) { transition-delay: 1440ms; }
body.reveal-ready .site-footer.is-visible .footer-link-group:nth-child(4) { transition-delay: 1520ms; }
body.reveal-ready .site-footer.is-visible .footer-legal { transition-delay: 1640ms; }

/* Real generated image layer: numbered assets replace the temporary CSS-only placeholders. */
.hero-placeholder-image,
.legend-card img,
.experience-placeholder-image,
.actions-banner img,
.rulebook-hero img,
.gallery-card img,
.commission-showcase img,
.traditions-archive img,
.faq-banner img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 1;
	pointer-events: none;
}

.hero-placeholder-image {
	z-index: 0;
}

.hero-visual .table-glow,
.hero-visual .leather-case,
.hero-visual .parchment-edge,
.hero-visual .hourglass,
.hero-visual .dice-scatter,
.legend-card-art,
.experience-table,
.actions-banner-scene,
.rulebook-hero-scene,
.commission-scene,
.traditions-map,
.faq-banner-scene {
	display: none;
}

.legend-card::before,
.gallery-art {
	display: none;
}

.legend-card img {
	z-index: 0;
	filter: saturate(0.86) contrast(1.06);
}

.experience-placeholder-image,
.actions-banner img,
.rulebook-hero img,
.commission-showcase img,
.traditions-archive img,
.faq-banner img {
	z-index: 1;
	filter: saturate(0.9) contrast(1.05);
}

.signs-placeholder-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.28;
	z-index: -1;
	pointer-events: none;
}

.gallery-card img {
	z-index: 0;
	filter: saturate(0.92) contrast(1.06);
	transition: transform 260ms ease, filter 260ms ease;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
	filter: brightness(1.08) saturate(0.96) contrast(1.08);
	transform: scale(1.025);
}

.lightbox-content img {
	position: relative;
	display: block;
	width: 100%;
	height: min(62vh, 620px);
	object-fit: contain;
	opacity: 1;
	pointer-events: auto;
	border: 1px solid rgba(199, 161, 90, 0.25);
	border-radius: 12px;
	background: #050404;
	box-shadow: 0 30px 100px rgba(0, 0, 0, 0.65);
}

.lightbox-art {
	display: none;
}

.footer-background-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.35;
	z-index: -2;
	pointer-events: none;
	filter: saturate(0.9) contrast(1.05);
}

.footer-background-scene {
	display: none;
}

.experience-label {
	display: none;
}

.brand-mark img,
.footer-logo img {
	border-radius: 0;
	object-fit: contain;
}

.suissa-seal-card img {
	position: relative;
	display: block;
	width: min(180px, 100%);
	height: auto;
	margin: 0 auto 16px;
	opacity: 1;
	filter: invert(74%) sepia(27%) saturate(711%) hue-rotate(2deg) brightness(92%);
}

.suissa-seal-placeholder {
	display: none;
}

/* Generated diagram assets replace scalable CSS sketches where a dedicated illustration exists. */
.table-diagram {
	display: none;
}

.sign-card-omen .dice-formula,
.sign-card-seal .dice-formula,
.sign-card-eclipse .eclipse-formula {
	min-height: clamp(86px, 9vw, 120px);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 94% auto;
	filter: saturate(0.92) contrast(0.96) brightness(0.9);
	mix-blend-mode: screen;
	opacity: 0.88;
	transition: filter 200ms ease, opacity 200ms ease, background-size 200ms ease;
}

.sign-card:hover .dice-formula,
.sign-card:focus-within .dice-formula {
	background-size: 98% auto;
	filter: saturate(0.98) contrast(1) brightness(1);
	opacity: 0.96;
}

.sign-card-omen .dice-formula { background-image: url("assets/15.png"); }
.sign-card-seal .dice-formula { background-image: url("assets/16.png"); }
.sign-card-eclipse .eclipse-different { background-image: url("assets/17.png"); }
.sign-card-eclipse .eclipse-same { background-image: url("assets/18.png"); }

.turn-diagram-table {
	background: rgba(0, 0, 0, 0.12);
	border-color: transparent;
	border-radius: 12px;
}

.turn-diagram-table > * {
	display: none;
}

.action-visual-claim,
.action-visual-recast,
.action-visual-shift,
.action-visual-parley,
.action-visual-stir {
	min-height: 74px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.action-visual > * {
	opacity: 0;
}

/* Readability pass: make regular prose brighter and slightly larger while preserving title/accent hierarchy. */
.hero-prose,
.legend-prose,
.history-inner p,
.game-prose,
.experience-prose,
.signs-intro,
.sign-rules,
.signs-closing,
.how-intro,
.play-step-card p,
.actions-intro,
.action-rule p,
.action-tactic p,
.rules-intro,
.rule-body,
.gallery-intro,
.commission-copy,
.commission-choice-card p,
.craft-tradition-inner p,
.traditions-intro,
.custom-card p,
.faq-intro,
.faq-answer,
.footer-copy {
	color: var(--color-parchment);
	font-size: clamp(1.1rem, 1.42vw, 1.24rem);
}

.sign-flavor,
.best-for p,
.step-note,
.action-tactic p,
.commission-level-card em,
.quick-reference-card p:last-child,
.rules-nav-panel > p,
.rules-button-note,
.legend-note,
.commission-note,
.how-actions p,
.footer-legal,
.faq-tools label,
.rules-tools label,
.rules-mobile-jump label {
	color: #a99f89 !important;
}

.section-placeholder {
	display: grid;
	place-items: center;
	min-height: 58vh;
	padding: 96px 24px;
	border-top: 1px solid rgba(199, 161, 90, 0.12);
	background: linear-gradient(180deg, #070606, #0c0808);
	text-align: center;
}

.section-placeholder h2 {
	color: var(--color-ivory);
	font-size: clamp(2rem, 5vw, 4rem);
	letter-spacing: 0.07em;
}

@keyframes logo-reveal {
	to {
		opacity: 1;
	}
}

@keyframes logo-shimmer {
	0% {
		filter: drop-shadow(0 0 0 rgba(199, 161, 90, 0));
	}
	45% {
		filter: drop-shadow(0 0 18px rgba(224, 194, 122, 0.42));
	}
	100% {
		filter: drop-shadow(0 0 18px rgba(199, 161, 90, 0.16));
	}
}

@keyframes fade-up {
	from {
		opacity: 0;
		transform: translateY(14px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes title-rise {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes visual-awaken {
	from {
		opacity: 0;
		filter: brightness(0.35);
	}
	to {
		opacity: 1;
		filter: brightness(1);
	}
}

@keyframes star-drift {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		transform: translate3d(-2rem, 1.6rem, 0);
	}
}

@keyframes dust-float {
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(-18px);
	}
}

@keyframes smoke-drift {
	from {
		transform: translate3d(-10px, 8px, 0) scale(1);
	}
	to {
		transform: translate3d(14px, -10px, 0) scale(1.04);
	}
}

@keyframes hourglass-pulse {
	0%, 100% {
		filter: drop-shadow(0 0 14px rgba(199, 161, 90, 0.1));
	}
	50% {
		filter: drop-shadow(0 0 24px rgba(199, 161, 90, 0.2));
	}
}

@keyframes sand-top-fall {
	0%, 100% {
		transform: scaleY(1);
		transform-origin: top;
	}
	50% {
		transform: scaleY(0.68);
		transform-origin: top;
	}
}

@keyframes sand-bottom-rise {
	0%, 100% {
		transform: scaleY(0.72);
		transform-origin: bottom;
	}
	50% {
		transform: scaleY(1);
		transform-origin: bottom;
	}
}

@keyframes sand-stream {
	0%, 100% {
		opacity: 0.35;
	}
	50% {
		opacity: 1;
	}
}

@media (max-width: 980px) {
	.site-header {
		width: min(100% - 36px, 720px);
	}

	.hero-nav {
		display: none;
	}

	.hero-section {
		min-height: 90vh;
		padding-top: 126px;
	}

	.hero-content {
		grid-template-columns: 1fr;
		min-height: auto;
		text-align: center;
	}

	.hero-copy {
		max-width: 690px;
		margin: 0 auto;
	}

	h1 {
		max-width: none;
		font-size: clamp(3.4rem, 12vw, 5.5rem);
	}

	.hero-prose {
		margin-right: auto;
		margin-left: auto;
	}

	.hero-actions {
		justify-content: center;
	}

	.hero-visual {
		width: min(100%, 660px);
		margin: 0 auto;
		min-height: 500px;
	}

	.legend-section {
		min-height: auto;
		padding-bottom: 88px;
	}

	.chapter-divider {
		margin-bottom: 54px;
	}

	.legend-content {
		grid-template-columns: 1fr;
		gap: 54px;
	}

	.legend-copy {
		max-width: 720px;
		margin: 0 auto;
		text-align: center;
	}

	.legend-copy h2 {
		max-width: none;
	}

	.legend-vow {
		display: inline-block;
		text-align: left;
	}

	.legend-panels {
		width: min(100%, 720px);
		margin: 0 auto;
	}

	.game-section {
		padding: 96px 24px;
	}

	.game-content {
		grid-template-columns: 1fr;
		gap: 56px;
	}

	.game-copy {
		max-width: 720px;
		margin: 0 auto;
		text-align: center;
	}

	.game-copy h2 {
		max-width: none;
	}

	.game-truths {
		display: inline-block;
		text-align: left;
	}

	.glance-panel {
		width: min(100%, 720px);
		margin: 0 auto;
	}

	.experience-section {
		min-height: auto;
		padding: 96px 24px;
	}

	.experience-content {
		display: block;
	}

	.experience-visual {
		position: relative;
		top: auto;
		width: min(100%, 720px);
		margin: 0 auto;
	}

	.experience-copy {
		max-width: 720px;
		margin: 0 auto;
		text-align: center;
	}

	.experience-copy h2 {
		max-width: none;
	}

	.experience-poem {
		display: inline-block;
		text-align: left;
	}

	.experience-quote,
	.experience-cards,
	.experience-closing {
		text-align: left;
	}

	.signs-section {
		padding: 96px 24px 80px;
	}

	.sign-cards {
		grid-template-columns: 1fr;
		width: min(720px, 100%);
	}

	.sign-card {
		min-height: auto;
	}

	.how-section {
		padding: 80px 24px 104px;
	}

	.play-step-left .play-step-card,
	.play-step-right .play-step-card {
		margin-right: 48px;
		margin-left: 48px;
	}

	.actions-section {
		padding: 96px 24px 104px;
	}

	.action-cards {
		grid-template-columns: 1fr;
		width: min(720px, 100%);
	}

	.action-card,
	.action-shift {
		grid-column: auto;
		min-height: auto;
	}

	.rules-section {
		padding: 96px 24px 104px;
	}

	.rules-layout {
		grid-template-columns: 1fr;
		width: min(820px, 100%);
	}

	.rules-sidebar {
		display: none;
	}

	.rules-mobile-jump {
		display: block;
		margin-bottom: 18px;
	}

	.rules-tools {
		grid-template-columns: 1fr;
	}

	.rules-tool-buttons {
		justify-content: flex-start;
	}

	.strategy-section {
		padding: 96px 24px 104px;
	}

	.strategy-model-cards,
	.phase-playbook {
		grid-template-columns: 1fr;
		width: min(720px, 100%);
		margin-right: auto;
		margin-left: auto;
	}

	.gallery-section {
		padding: 96px 24px 104px;
	}

	.gallery-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gallery-feature,
	.gallery-wide,
	.gallery-full {
		grid-column: span 2;
	}

	.lightbox-content {
		grid-template-columns: 1fr;
	}

	.commission-section {
		padding: 100px 24px 112px;
	}

	.commission-choice-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: min(820px, 100%);
	}

	.commission-levels {
		grid-template-columns: 1fr;
		width: min(720px, 100%);
	}

	.traditions-section {
		padding: 96px 24px 104px;
	}

	.customs-panel {
		grid-template-columns: 1fr;
		width: min(820px, 100%);
	}

	.custom-card-feature {
		grid-column: auto;
	}

	.faq-section {
		padding: 96px 24px 104px;
	}

	.faq-grid {
		column-count: 2;
		width: min(820px, 100%);
	}

	.site-footer {
		padding-top: 96px;
	}

	.footer-nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.footer-legal {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

@media (max-width: 640px) {
	.site-header {
		justify-content: center;
		padding-top: 18px;
	}

	.hero-section {
		min-height: 92vh;
		padding: 112px 18px 54px;
	}

	.eyebrow {
		font-size: 0.68rem;
		letter-spacing: 0.18em;
	}

	h1 {
		font-size: clamp(2.65rem, 14vw, 3.5rem);
		letter-spacing: 0.055em;
	}

	.hero-subtitle {
		font-size: clamp(1.2rem, 6vw, 1.38rem);
	}

	.hero-prose {
		font-size: 1.04rem;
		line-height: 1.62;
	}

	.hero-actions {
		flex-direction: column;
	}

	.button {
		width: 100%;
	}

	.hero-visual {
		min-height: 390px;
		border-radius: 20px;
	}

	.hourglass {
		top: 20%;
		left: 52%;
		transform: rotate(4deg) scale(0.72);
		transform-origin: center;
	}

	.die {
		width: 62px;
		height: 62px;
		border-radius: 12px;
	}

	.die-symbol {
		font-size: 1.8rem;
	}

	.die-focus {
		right: 18%;
		bottom: 20%;
		width: 92px;
		height: 92px;
	}

	.die-focus .die-symbol {
		font-size: 3rem;
	}

	.legend-section {
		padding: 0 0 72px;
	}

	.chapter-divider {
		margin-bottom: 44px;
		padding-top: 26px;
	}

	.legend-copy {
		padding: 0 18px;
		text-align: left;
	}

	.legend-copy h2 {
		font-size: clamp(2.12rem, 10vw, 2.65rem);
		letter-spacing: 0.045em;
	}

	.legend-prose {
		font-size: 1.03rem;
		line-height: 1.66;
	}

	.legend-vow {
		display: block;
		font-size: 1.16rem;
	}

	.legend-button {
		width: auto;
	}

	.history-panel {
		margin-top: 44px;
	}

	.legend-panels {
		display: flex;
		gap: 18px;
		min-height: auto;
		width: 100%;
		margin-top: 2px;
		padding: 12px 18px 38px;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-padding: 18px;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
	}

	.legend-panels::before {
		inset: 18% 0 18%;
	}

	.legend-panels::after {
		position: absolute;
		left: 50%;
		bottom: 12px;
		width: 86px;
		height: 2px;
		content: "";
		border-radius: 999px;
		background: linear-gradient(90deg, rgba(199, 161, 90, 0.75), rgba(199, 161, 90, 0.18));
		transform: translateX(-50%);
	}

	.legend-card,
	.legend-card:hover,
	.legend-card:focus-within {
		flex: 0 0 82vw;
		width: 82vw;
		max-width: 360px;
		height: 390px;
		transform: translateY(var(--legend-parallax)) rotate(0deg);
		scroll-snap-align: start;
	}

	body.reveal-ready .legend-card,
	body.reveal-ready .legend-section.is-visible .legend-card {
		transform: translateY(var(--legend-parallax)) rotate(0deg);
	}

	body.reveal-ready .legend-section.is-visible .legend-card:hover,
	body.reveal-ready .legend-section.is-visible .legend-card:focus-within {
		transform: translateY(calc(var(--legend-parallax) - 4px)) rotate(0deg);
	}

	.legend-card-caption {
		opacity: 1;
	}

	.game-section {
		padding: 80px 18px;
	}

	.game-copy {
		text-align: left;
	}

	.game-copy h2 {
		font-size: clamp(2.12rem, 10vw, 2.65rem);
		letter-spacing: 0.035em;
	}

	.game-prose {
		font-size: 1.03rem;
		line-height: 1.66;
	}

	.term[data-tooltip]::before {
		left: 0;
		max-width: min(230px, 78vw);
		transform: translate(0, 8px);
	}

	.term[data-tooltip]::after {
		left: 18px;
		transform: translate(0, 8px) rotate(45deg);
	}

	.term[data-tooltip]:hover::before,
	.term[data-tooltip]:focus-visible::before {
		transform: translate(0, 0);
	}

	.term[data-tooltip]:hover::after,
	.term[data-tooltip]:focus-visible::after {
		transform: translate(0, 0) rotate(45deg);
	}

	.game-truths {
		display: block;
		font-size: 1.16rem;
	}

	.glance-panel {
		padding: 26px 18px;
	}

	.glance-cards {
		grid-template-columns: 1fr;
	}

	.glance-card,
	.glance-card-goal {
		width: 100%;
		min-height: auto;
		margin: 0;
		text-align: left;
	}

	.table-diagram {
		min-height: 238px;
	}

	.table-ring {
		width: 178px;
		height: 130px;
	}

	.pool-dice {
		width: 130px;
	}

	.assembly-row-diagram {
		grid-template-columns: repeat(4, 30px);
		gap: 7px;
	}

	.assembly-row-diagram span {
		width: 30px;
		height: 30px;
	}

	.diagram-hourglass {
		right: 18px;
	}

	.experience-section {
		padding: 80px 18px;
	}

	.experience-content {
		gap: 42px;
	}

	.experience-copy {
		text-align: left;
	}

	.experience-copy h2 {
		font-size: clamp(2.12rem, 10vw, 2.75rem);
		letter-spacing: 0.035em;
	}

	.experience-prose {
		font-size: 1.03rem;
		line-height: 1.66;
	}

	.experience-poem {
		display: block;
		font-size: 1.15rem;
	}

	.experience-visual {
		min-height: 420px;
		border-radius: 10px;
		transform: none !important;
	}

	.experience-label {
		display: none;
	}

	.experience-table {
		inset: 8% -22% 8% -10%;
	}

	.experience-pool {
		left: 45%;
		top: 43%;
		transform: translate(-50%, -50%) rotate(5deg) scale(0.78);
	}

	.experience-row {
		left: 10%;
		bottom: 17%;
		transform: rotate(7deg) scale(0.76);
		transform-origin: left center;
	}

	.experience-hourglass {
		right: 20%;
		bottom: 18%;
		transform: scale(0.76);
		transform-origin: center;
	}

	.experience-hand {
		right: 3%;
		top: 22%;
		transform: rotate(-17deg) scale(0.82);
	}

	.experience-case {
		width: 148px;
		height: 66px;
	}

	.experience-quote {
		padding: 20px;
	}

	.experience-cards {
		grid-template-columns: 1fr;
	}

	.experience-card {
		padding: 20px;
	}

	.signs-section {
		padding: 80px 18px 64px;
	}

	.signs-header {
		margin-bottom: 42px;
		text-align: left;
	}

	.signs-header .eyebrow,
	.signs-header h2 {
		text-align: left;
	}

	.signs-header h2 {
		font-size: clamp(2.25rem, 11vw, 2.88rem);
		letter-spacing: 0.04em;
	}

	.signs-intro {
		font-size: 1.03rem;
		line-height: 1.66;
	}

	.signs-poem {
		font-size: 1.18rem;
	}

	.sign-card {
		padding: 28px 20px;
	}

	.sign-card h3 {
		font-size: clamp(1.62rem, 8vw, 2rem);
	}

	.sign-poetic {
		margin-bottom: 24px;
	}

	.dice-formula {
		gap: 7px;
	}

	.condition-list {
		font-size: 0.82rem;
	}

	.eclipse-toggle {
		flex-wrap: wrap;
	}

	.signs-reminder {
		grid-template-columns: 1fr;
		gap: 8px;
		padding: 18px;
		text-align: center;
	}

	.signs-closing {
		font-size: 1.03rem;
		text-align: left;
	}

	.signs-final-line {
		font-size: clamp(1.38rem, 7vw, 1.62rem);
	}

	.how-section {
		padding: 64px 18px 90px;
	}

	.how-header {
		text-align: left;
	}

	.how-header .eyebrow,
	.how-header h2 {
		text-align: left;
	}

	.how-header h2 {
		font-size: clamp(2.25rem, 11vw, 2.88rem);
		letter-spacing: 0.04em;
	}

	.how-intro {
		font-size: 1.03rem;
		line-height: 1.66;
	}

	.how-opening-lines {
		font-size: 1.15rem;
	}

	.turn-diagram {
		margin: 40px auto 52px;
		padding: 18px;
	}

	.turn-diagram-table {
		min-height: 220px;
	}

	.turn-player {
		width: 54px;
	}

	.turn-player-left {
		left: 18px;
	}

	.turn-player-right {
		right: 18px;
	}

	.turn-score-pile {
		right: 12%;
	}

	.turn-hourglass {
		left: 18%;
	}

	.play-timeline {
		gap: 24px;
	}

	.play-timeline::before {
		left: 13px;
	}

	.play-step {
		display: block;
		padding-left: 38px;
	}

	.play-step-left .play-step-card,
	.play-step-right .play-step-card {
		margin: 0;
	}

	.timeline-marker {
		left: 13px;
		top: 32px;
		width: 20px;
		height: 20px;
	}

	.play-step-card {
		padding: 24px 20px;
	}

	.step-card-header {
		align-items: center;
	}

	.step-visual {
		min-width: 96px;
		transform: scale(0.9);
		transform-origin: right center;
	}

	.play-step-card h3 {
		font-size: clamp(1.38rem, 7vw, 1.62rem);
	}

	.play-step-card p {
		font-size: 1rem;
		line-height: 1.6;
	}

	.how-summary {
		margin-top: 52px;
		padding: 28px 20px;
	}

	.how-summary-lines {
		font-size: clamp(1.22rem, 6vw, 1.44rem);
	}

	.how-actions .button {
		width: min(100%, 320px);
	}

	.actions-section {
		padding: 80px 18px 90px;
	}

	.actions-header {
		text-align: left;
	}

	.actions-header .eyebrow,
	.actions-header h2 {
		text-align: left;
	}

	.actions-header h2 {
		font-size: clamp(2.25rem, 11vw, 2.88rem);
		letter-spacing: 0.04em;
	}

	.actions-intro {
		font-size: 1.03rem;
		line-height: 1.66;
	}

	.actions-poem {
		font-size: 1.18rem;
		text-align: left;
	}

	.actions-banner {
		min-height: 240px;
		margin: 40px auto 44px;
	}

	.actions-banner p {
		width: min(82%, 320px);
		font-size: 0.92rem;
	}

	.banner-hand {
		right: 8%;
		top: 18%;
		transform: rotate(-14deg) scale(0.72);
	}

	.banner-crown {
		left: 42%;
		top: 42%;
	}

	.banner-moon {
		left: 24%;
		top: 58%;
	}

	.banner-star {
		left: 56%;
		top: 60%;
	}

	.banner-row-die {
		left: 10%;
	}

	.banner-row-space {
		left: calc(10% + 72px);
	}

	.banner-hourglass {
		right: 10%;
		transform: scale(0.78);
		transform-origin: center bottom;
	}

	.action-card {
		padding: 26px 20px;
	}

	.action-card h3 {
		font-size: clamp(1.62rem, 8vw, 2rem);
	}

	.action-visual {
		justify-content: flex-start;
		transform: scale(0.92);
		transform-origin: left center;
	}

	.action-visual-shift,
	.action-visual-parley,
	.action-visual-stir {
		justify-content: flex-start;
	}

	.action-rule p,
	.action-tactic p {
		font-size: 0.98rem;
	}

	.action-comparison {
		display: grid;
		gap: 8px;
		padding: 18px;
		text-align: left;
	}

	.actions-closing {
		font-size: 1.03rem;
		text-align: left;
	}

	.actions-closing-lines {
		font-size: clamp(1.22rem, 6vw, 1.44rem);
		text-align: left;
	}

	.actions-final-line {
		text-align: left;
	}

	.rules-section {
		padding: 80px 18px 90px;
	}

	.rules-header {
		text-align: left;
	}

	.rules-header .eyebrow,
	.rules-header h2 {
		text-align: left;
	}

	.rules-header h2 {
		font-size: clamp(2.25rem, 11vw, 2.88rem);
		letter-spacing: 0.04em;
	}

	.rules-intro {
		font-size: 1.03rem;
		line-height: 1.66;
	}

	.rulebook-note {
		text-align: left;
	}

	.rules-actions {
		align-items: center;
		flex-direction: column;
	}

	.rules-actions .button {
		width: min(100%, 320px);
	}

	.rules-button-note {
		text-align: center;
	}

	.rulebook-hero {
		min-height: 240px;
		margin: 40px auto 44px;
	}

	.rule-paper {
		left: 10%;
		top: 20%;
		width: 56%;
		height: 54%;
	}

	.rule-crown-die {
		left: 54%;
		top: 50%;
		width: 58px;
		height: 58px;
		font-size: 1.8rem;
	}

	.rule-hourglass {
		right: 12%;
		top: 22%;
		transform: scale(0.78);
		transform-origin: center;
	}

	.rulebook-hero-copy {
		left: 20px;
		bottom: 20px;
	}

	.rulebook-panel {
		padding: 22px;
	}

	.rules-tool-buttons {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.rules-tool-buttons button {
		padding: 11px 8px;
	}

	.rule-toggle {
		grid-template-columns: auto minmax(0, 1fr) auto;
		gap: 12px;
		padding: 18px 14px;
	}

	.rule-toggle strong {
		font-size: 1.22rem;
	}

	.rule-toggle em {
		font-size: 0.84rem;
	}

	.rule-body {
		padding: 22px 18px;
		font-size: 1rem;
		line-height: 1.68;
	}

	.strategy-section {
		padding: 80px 18px 90px;
	}

	.strategy-header {
		text-align: left;
	}

	.strategy-header .eyebrow,
	.strategy-header h2 {
		text-align: left;
	}

	.strategy-header h2 {
		font-size: clamp(2.25rem, 11vw, 2.88rem);
		letter-spacing: 0.04em;
	}

	.strategy-intro {
		font-size: 1.03rem;
		line-height: 1.66;
	}

	.strategy-poem,
	.strategy-promise {
		text-align: left;
	}

	.strategy-hero {
		min-height: 240px;
		margin: 40px auto;
	}

	.strategy-hero-label {
		left: 18px;
		bottom: 18px;
	}

	.strategy-toggle {
		gap: 12px;
		padding: 20px 18px;
	}

	.strategy-toggle strong {
		font-size: 1.25rem;
	}

	.strategy-body {
		padding: 0 18px 22px;
	}

	.strategy-lesson-header {
		padding: 22px 18px;
		text-align: left;
	}

	.strategy-question-pair,
	.strategy-comparison,
	.strategy-seal-pivot-diagram,
	.strategy-starvation-board,
	.strategy-dot-direction,
	.strategy-recast-flow,
	.strategy-recast-conversion,
	.strategy-recast-bad,
	.strategy-tool-grid,
	.strategy-pool-threat-diagram,
	.strategy-stir-denial-diagram,
	.strategy-bad-denial-diagram,
	.strategy-timer-stir-diagram,
	.strategy-parley-pause-diagram,
	.strategy-sabotage-warning,
	.strategy-shift-compare-diagram,
	.strategy-blessing-bait-diagram,
	.strategy-shift-danger-diagram,
	.strategy-parley-main-diagram,
	.strategy-politics-diagram,
	.strategy-dangerous-parley,
	.strategy-endgame-clock,
	.strategy-phantom-diagram,
	.strategy-final-check-diagram,
	.strategy-bad-ending-diagram,
	.strategy-end-limit-ledger,
	.strategy-leader-trailer-diagram,
	.strategy-leader-shift-warning,
	.strategy-trailer-parley-diagram,
	.strategy-row-size-diagram,
	.strategy-score-gap-guide,
	.strategy-decision-system-diagram,
	.strategy-purpose-grid,
	.strategy-turn-type-grid,
	.strategy-system-example,
	.strategy-system-close-example {
		grid-template-columns: 1fr;
	}

	.strategy-crown-ledger {
		grid-template-columns: 1fr;
	}

	.strategy-crown-ledger div {
		text-align: left;
	}

	.strategy-row-diagram {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 8px;
		padding: 14px;
	}

	.strategy-engine-row:hover .manual-die-empty,
	.strategy-rush-row:hover .manual-die,
	.strategy-seal-valid-row:hover .manual-die-match,
	.strategy-seal-valid-row:hover .manual-die-new-crown {
		box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.05), inset -8px -12px 22px rgba(0, 0, 0, 0.42), 0 14px 28px rgba(0, 0, 0, 0.38);
	}

	.strategy-seal-invalid-row:hover .manual-die-mismatch .manual-dots {
		animation: none;
	}

	.strategy-starvation-board:hover .manual-die-starving-crown,
	.strategy-starvation-board:hover .manual-die-seal-slot {
		box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.05), inset -8px -12px 22px rgba(0, 0, 0, 0.42), 0 14px 28px rgba(0, 0, 0, 0.38);
	}

	.strategy-four-crown-invalid-row:hover .manual-die-crown {
		opacity: 1;
		filter: none;
	}

	.strategy-clean-foundation-row:hover .manual-die-future-slot {
		box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.05), inset -8px -12px 22px rgba(0, 0, 0, 0.42), 0 14px 28px rgba(0, 0, 0, 0.38);
	}

	.strategy-duplicate-shape-row:hover .manual-die-repeat-shape .manual-die-symbol,
	.strategy-duplicate-halo-row:hover .manual-die-repeat-halo .manual-die-halo,
	.strategy-dot-matching:hover .manual-dots,
	.strategy-dot-different:hover .manual-dots,
	.strategy-dot-danger:hover .manual-dots {
		animation: none;
	}

	.strategy-recast-flow:hover .manual-die-surgical-problem,
	.strategy-recast-conversion:hover .manual-die-surgical-problem,
	.strategy-four-crown-invalid-row:hover .manual-die-crown {
		opacity: 1;
		filter: none;
	}

	.strategy-recast-flow:hover .manual-die-replacement,
	.strategy-recast-flow:hover .strategy-recast-after-row .manual-die,
	.strategy-recast-conversion:hover .manual-die-replacement,
	.strategy-recast-conversion:hover .strategy-recast-conversion-after .manual-die-match,
	.strategy-recast-bad:hover .manual-die-visible-finisher {
		box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.05), inset -8px -12px 22px rgba(0, 0, 0, 0.42), 0 14px 28px rgba(0, 0, 0, 0.38);
	}

	.strategy-pool-threat-diagram:hover .manual-die-dangerous-pool,
	.strategy-pool-threat-diagram:hover .manual-die-target-slot,
	.strategy-bad-denial-diagram:hover .manual-die-visible-finisher,
	.strategy-stir-denial-diagram:hover .manual-die-stir-target {
		box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.05), inset -8px -12px 22px rgba(0, 0, 0, 0.42), 0 14px 28px rgba(0, 0, 0, 0.38);
	}

	.strategy-stir-denial-diagram:hover .strategy-stir-pool::after {
		animation: none;
	}

	.strategy-timer-stir-diagram:hover .manual-die-stir-target,
	.strategy-sabotage-warning:hover .manual-die-sabotage-target {
		box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.05), inset -8px -12px 22px rgba(0, 0, 0, 0.42), 0 14px 28px rgba(0, 0, 0, 0.38);
	}

	.strategy-timer-stir-diagram:hover .strategy-stir-pool::after {
		animation: none;
	}

	.strategy-own-shift-panel:hover .manual-die-shift-all,
	.strategy-opponent-shift-panel:hover .manual-die-shift-one,
	.strategy-shift-danger-diagram:hover .manual-die-shift-risk {
		box-shadow: inset 7px 7px 16px rgba(255, 235, 178, 0.05), inset -8px -12px 22px rgba(0, 0, 0, 0.42), 0 14px 28px rgba(0, 0, 0, 0.38);
		transform: none;
	}

	.strategy-blessing-bait-diagram:hover > div:first-child {
		opacity: 1;
	}

	.strategy-parley-main-diagram:hover .manual-die-offered,
	.strategy-parley-main-diagram:hover .manual-die-requested {
		transform: none;
	}

	.strategy-politics-diagram:hover .strategy-player-trailer,
	.strategy-dangerous-parley:hover .manual-die-offered,
	.strategy-dangerous-parley:hover .strategy-row-diagram {
		box-shadow: none;
	}

	.strategy-politics-diagram:hover .strategy-player-leader {
		opacity: 0.78;
	}

	.strategy-phantom-diagram:hover .strategy-phantom-die {
		transform: none;
		box-shadow: none;
	}

	.strategy-final-check-diagram:hover .strategy-final-check-row,
	.strategy-bad-ending-diagram:hover .strategy-final-check-row,
	.strategy-endgame-clock:hover .strategy-endgame-pool,
	.strategy-endgame-clock:hover .strategy-end-limit-marker {
		box-shadow: 0 0 24px rgba(199, 161, 90, 0.16);
	}

	.strategy-leader-trailer-diagram:hover .strategy-leader-side,
	.strategy-leader-trailer-diagram:hover .strategy-trailer-side,
	.strategy-leader-shift-warning:hover .strategy-shift-danger-row,
	.strategy-trailer-parley-diagram:hover .manual-die-requested,
	.strategy-row-size-diagram:hover .strategy-tiebreak-favored {
		box-shadow: none;
	}

	.strategy-decision-system-diagram:hover .strategy-system-path::before {
		animation: none;
	}

	.strategy-system-example:hover .manual-die-visible-finisher,
	.strategy-system-example:hover .manual-die-dangerous-pool,
	.strategy-system-example:hover .manual-die-target-slot,
	.strategy-system-close-example:hover .strategy-end-limit-marker {
		box-shadow: none;
	}

	.strategy-diagram {
		min-height: 170px;
	}

	.strategy-summary {
		margin-top: 52px;
		padding: 30px 20px;
	}

	.gallery-section {
		padding: 80px 18px 90px;
	}

	.gallery-header {
		text-align: left;
	}

	.gallery-header .eyebrow,
	.gallery-header h2 {
		text-align: left;
	}

	.gallery-header h2 {
		font-size: clamp(2.25rem, 11vw, 2.88rem);
		letter-spacing: 0.04em;
	}

	.gallery-intro {
		font-size: 1.03rem;
		line-height: 1.66;
	}

	.gallery-poem {
		font-size: 1.18rem;
		text-align: left;
	}

	.gallery-filters {
		flex-wrap: nowrap;
		justify-content: flex-start;
		margin: 36px -18px 34px;
		padding: 0 18px;
		overflow-x: auto;
		scroll-padding: 18px;
	}

	.gallery-filters button {
		flex: 0 0 auto;
	}

	.gallery-grid {
		display: grid;
		grid-auto-rows: auto;
		grid-template-columns: 1fr;
	}

	.gallery-card,
	.gallery-feature,
	.gallery-wide,
	.gallery-full,
	.gallery-detail {
		grid-column: auto;
		grid-row: auto;
		min-height: 340px;
	}

	.gallery-caption {
		padding: 86px 20px 20px;
	}

	.gallery-closing {
		margin-top: 48px;
		padding: 24px 20px;
		font-size: 1.3rem;
	}

	.gallery-lightbox {
		padding: 18px;
	}

	.lightbox-content {
		gap: 18px;
	}

	.lightbox-art {
		min-height: 48vh;
	}

	.lightbox-caption {
		padding: 20px;
	}

	.lightbox-arrow {
		top: auto;
		bottom: 18px;
		width: 42px;
		height: 48px;
		transform: none;
	}

	.lightbox-prev {
		left: 18px;
	}

	.lightbox-next {
		right: 18px;
	}

	.commission-section {
		padding: 85px 18px 100px;
	}

	.commission-header {
		text-align: left;
	}

	.commission-header .eyebrow,
	.commission-header h2 {
		text-align: left;
	}

	.commission-header h2 {
		font-size: clamp(2.25rem, 11vw, 2.88rem);
		letter-spacing: 0.04em;
	}

	.commission-copy {
		font-size: 1.03rem;
		line-height: 1.66;
	}

	.commission-poem {
		font-size: 1.28rem;
		text-align: left;
	}

	.commission-showcase {
		min-height: 360px;
		margin: 40px auto;
	}

	.commission-case {
		left: 6%;
		top: 16%;
		width: 72%;
		height: 48%;
	}

	.commission-letter {
		right: 8%;
		top: 18%;
		width: 28%;
	}

	.commission-crown {
		left: 20%;
		bottom: 18%;
		width: 72px;
		height: 72px;
		font-size: 2.2rem;
	}

	.commission-sun {
		left: 44%;
		bottom: 22%;
	}

	.commission-moon {
		left: 10%;
		bottom: 34%;
	}

	.commission-hourglass-standing {
		right: 18%;
		bottom: 18%;
		transform: scale(0.78);
		transform-origin: center bottom;
	}

	.commission-hourglass-resting {
		display: none;
	}

	.commission-image-label {
		left: 18px;
		bottom: 18px;
	}

	.craft-choice-intro {
		font-size: 1.2rem;
		text-align: left;
	}

	.commission-choice-cards {
		grid-template-columns: 1fr;
	}

	.commission-choice-card {
		padding: 26px 20px;
	}

	.commission-level-card {
		padding: 24px 20px;
	}

	.craft-master-quote {
		margin: 52px auto;
		padding: 28px 20px;
		text-align: left;
	}

	.commission-cta {
		padding: 32px 20px;
	}

	.commission-actions {
		align-items: center;
		flex-direction: column;
	}

	.commission-actions .button {
		width: min(100%, 320px);
	}

	.craft-tradition-inner {
		padding: 26px 20px;
	}

	.registry-houses-section {
		grid-template-columns: 1fr;
	}

	.suissa-seal-card {
		max-width: 260px;
	}

	.commission-final-line {
		text-align: left;
	}

	.traditions-section {
		padding: 80px 18px 95px;
	}

	.traditions-header {
		text-align: left;
	}

	.traditions-header .eyebrow,
	.traditions-header h2 {
		text-align: left;
	}

	.traditions-header h2 {
		font-size: clamp(2.25rem, 11vw, 2.88rem);
		letter-spacing: 0.04em;
	}

	.traditions-intro {
		font-size: 1.03rem;
		line-height: 1.66;
	}

	.traditions-poem {
		font-size: 1.2rem;
		text-align: left;
	}

	.traditions-notice {
		text-align: left;
	}

	.traditions-archive {
		min-height: 260px;
		margin: 40px auto 38px;
	}

	.archive-note {
		width: 38%;
	}

	.note-one {
		left: 10%;
	}

	.note-two {
		right: 10%;
	}

	.archive-book {
		display: none;
	}

	.archive-label {
		left: 18px;
		bottom: 18px;
	}

	.tradition-tabs {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
		margin: 38px auto 30px;
	}

	.tradition-tabs button {
		min-width: 0;
		padding: 12px 10px;
	}

	.custom-card {
		padding: 26px 20px;
	}

	.custom-icon {
		right: 18px;
		top: 18px;
	}

	.custom-icon-img {
		right: 18px;
		top: 18px;
		width: 40px;
		height: 40px;
	}

	.custom-card h3 {
		font-size: clamp(1.45rem, 7vw, 1.82rem);
	}

	.traditions-closing {
		padding: 28px 20px;
		text-align: left;
	}

	.traditions-closing-lines {
		font-size: 1.3rem;
	}

	.traditions-final-line {
		text-align: left;
	}

	.traditions-final-line::after {
		margin-left: 0;
	}

	.faq-section {
		padding: 80px 18px 95px;
	}

	.faq-header {
		text-align: left;
	}

	.faq-header .eyebrow,
	.faq-header h2 {
		text-align: left;
	}

	.faq-header h2 {
		font-size: clamp(2.25rem, 11vw, 2.88rem);
		letter-spacing: 0.04em;
	}

	.faq-intro {
		font-size: 1.03rem;
		line-height: 1.66;
	}

	.faq-poem {
		font-size: 1.18rem;
		text-align: left;
	}

	.faq-notice {
		text-align: left;
	}

	.faq-banner {
		min-height: 220px;
		margin: 40px auto 36px;
	}

	.faq-rulebook {
		left: 10%;
		width: 44%;
	}

	.faq-crown {
		left: 48%;
		top: 48%;
		width: 58px;
		height: 58px;
		font-size: 1.8rem;
	}

	.faq-hourglass {
		right: 10%;
		transform: scale(0.78);
		transform-origin: center;
	}

	.faq-case {
		display: none;
	}

	.faq-banner-label {
		left: 18px;
		bottom: 18px;
	}

	.faq-tools {
		text-align: left;
	}

	.faq-search {
		width: 100%;
	}

	.faq-filter-chips {
		flex-wrap: nowrap;
		justify-content: flex-start;
		margin-right: -18px;
		margin-left: -18px;
		padding: 0 18px;
		overflow-x: auto;
	}

	.faq-filter-chips button {
		flex: 0 0 auto;
	}

	.faq-grid {
		column-count: 1;
	}

	.faq-question {
		padding: 18px 18px;
	}

	.faq-answer {
		padding: 18px;
	}

	.faq-closing {
		padding: 28px 20px;
		text-align: left;
	}

	.faq-final-line {
		text-align: left;
	}

	.faq-final-line::after {
		margin-left: 0;
	}

	.site-footer {
		padding: 80px 18px 0;
	}

	.footer-case {
		top: 24%;
		height: 160px;
	}

	.footer-crown-die {
		left: 48%;
		top: 46%;
		width: 62px;
		height: 62px;
		font-size: 1.9rem;
	}

	.footer-hourglass {
		right: 14%;
		top: 36%;
		transform: scale(0.78);
		transform-origin: center;
	}

	.footer-invitation h2 {
		font-size: clamp(2.25rem, 11vw, 2.88rem);
	}

	.footer-actions {
		flex-direction: column;
	}

	.footer-actions .button {
		width: min(100%, 320px);
	}

	.footer-text-link {
		min-height: 36px;
	}

	.footer-motto {
		font-size: 1.45rem;
	}

	.footer-divider {
		margin: 56px auto 34px;
	}

	.footer-nav {
		grid-template-columns: 1fr;
		gap: 12px;
		padding-bottom: 42px;
	}

	.footer-link-group {
		border-bottom: 1px solid rgba(199, 161, 90, 0.12);
		padding-bottom: 12px;
	}

	.footer-group-toggle {
		position: relative;
		width: 100%;
		min-height: 44px;
		margin: 0;
		cursor: pointer;
	}

	.footer-group-toggle::after {
		position: absolute;
		right: 0;
		content: "+";
		color: var(--color-gold);
	}

	.footer-group-toggle[aria-expanded="true"]::after {
		content: "−";
	}

	.footer-group-links {
		display: none;
		padding: 8px 0 6px;
	}

	.footer-link-group.is-open .footer-group-links {
		display: grid;
	}

	.footer-legal {
		margin: 0 -18px;
		padding: 22px 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 1ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 1ms !important;
	}
}
