/* ==========================================================================
   Royal Vegas Casino — New Zealand review desk
   Layer order: tokens → fonts → reset → a11y → layout shells → components → utilities
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
	/* palette */
	--k-base: #2475ab;
	--k-action: #f2b869;
	--k-accent-pressed: #efa63d;
	--k-ground: #121314;
	--k-layer: #1c1e20;
	--k-front: #ffffff;
	--k-soft-text: #c1c1c1;
	--k-edge: #2f3336;
	--k-border-strong: #4b5155;
	--k-gradient-light: #fbedd7;
	--k-gradient-mid: #f8d098;
	--k-advisory: #a4161a;

	/* spacing — asymmetric editorial */
	--s-hair: 3px;
	--s-tiny: 10px;
	--s-snug: 18px;
	--s-base: 28px;
	--s-wide: 44px;
	--s-roomy: 60px;
	--s-vast: 88px;
	--s-huge: 128px;

	/* geometry — dashed editorial */
	--r-hair: 2px;
	--r-tiny: 4px;
	--r-snug: 8px;
	--r-base: 12px;
	--r-wide: 16px;
	--r-roomy: 20px;
	--r-vast: 26px;
	--r-huge: 34px;
	--r-pill: 9999px;
	--r-circle: 50%;
	--d-hair: none;
	--d-tiny: none;
	--d-snug: none;
	--d-base: none;
	--d-wide: 0 8px 24px rgba(0, 0, 0, 0.35);
	--d-roomy: 0 14px 38px rgba(0, 0, 0, 0.42);
	--d-vast: 0 20px 54px rgba(0, 0, 0, 0.5);
	--d-huge: 0 28px 70px rgba(0, 0, 0, 0.55);
	--b-light: 1px;
	--b-medium: 2px;
	--b-heavy: 3px;

	/* typography — display-heavy magazine */
	--f-heading: "Sora", "Trebuchet MS", sans-serif;
	--f-text: "Inter", "Helvetica Neue", Arial, sans-serif;
	--z-xxl: 72px;
	--z-h2: 44px;
	--z-display-3: 28px;
	--z-h4: 20px;
	--z-h5: 16px;
	--z-h6: 14px;
	--z-body: 18px;
	--z-petite: 15px;
	--z-xs: 12px;
	--l-compact: 1.06;
	--l-even: 1.5;
	--l-relaxed: 1.7;
	--w-regular: 400;
	--w-mid: 600;
	--w-thick: 800;
	--e-close: -0.03em;
	--e-normal: 0;
	--e-loose: 0.05em;

	/* motion — lively */
	--t-short: 200ms;
	--t-regular: 340ms;
	--t-gentle: 537ms;
	--x-out: cubic-bezier(0.16, 0.9, 0.35, 0.92);
	--x-take-off: cubic-bezier(0.36, 0.01, 0.51, 0.96);
	--x-smooth: cubic-bezier(0.36, 0.01, 0.51, 0.96);
	--x-spring: cubic-bezier(0.4, 1.3, 0.61, 1.15);

	/* containers */
	--v-main: 1220px;
	--v-text: 650px;
	--v-edge-wide: 32px;
	--v-edge-mid: 20px;
	--v-inset-mobile: 12px;

	/* shell */
	--h-h-lg: 62px;
	--h-h-sm: 56px;

	/* build-local helpers */
	--u-shell: calc(var(--v-main) + 2 * var(--v-edge-wide));
	--u-sec-y: 52px;
	--u-note-h: 0px;
	--u-rule: rgba(255, 255, 255, 0.09);
	--u-rule-firm: rgba(255, 255, 255, 0.16);
	--u-wash: rgba(36, 117, 171, 0.14);
	--u-glow: rgba(242, 184, 105, 0.12);
}

@media (max-width: 880px) {
	:root {
		--z-xxl: 40px;
		--z-h2: 30px;
		--z-display-3: 22px;
		--z-h4: 18px;
		--z-h5: 14px;
		--z-h6: 12px;
		--z-body: 17px;
		--z-petite: 14px;
		--z-xs: 11px;
		--v-edge-wide: var(--v-inset-mobile);
		--u-sec-y: 36px;
	}
}

/* --------------------------------------------------------------------------
   2. Self-hosted faces (no third-party render blocking)
   -------------------------------------------------------------------------- */
@font-face {
	font-family: "Sora";
	font-style: normal;
	font-weight: 500 600;
	font-display: swap;
	src: url("/typecase/sora-latin-600-normal.woff2") format("woff2");
}
@font-face {
	font-family: "Sora";
	font-style: normal;
	font-weight: 700 800;
	font-display: swap;
	src: url("/typecase/sora-latin-800-normal.woff2") format("woff2");
}
@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("/typecase/inter-latin-400-normal.woff2") format("woff2");
}
@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 500 600;
	font-display: swap;
	src: url("/typecase/inter-latin-600-normal.woff2") format("woff2");
}
@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 700 800;
	font-display: swap;
	src: url("/typecase/inter-latin-700-normal.woff2") format("woff2");
}

/* --------------------------------------------------------------------------
   3. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	background: var(--k-ground);
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

html,
body {
	overflow-x: clip;
}

body {
	margin: 0;
	margin-block-start: var(--u-note-h);
	background: var(--k-ground);
	color: var(--k-front);
	font-family: var(--f-text);
	font-size: var(--z-body);
	font-weight: var(--w-regular);
	line-height: var(--l-even);
	-webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: anywhere;
	margin: 0;
}

h1 {
	font-family: var(--f-heading);
	font-weight: var(--w-thick);
	font-size: clamp(30px, 5.4vw, var(--z-xxl));
	letter-spacing: var(--e-close);
	line-height: var(--l-compact);
}

h2 {
	font-family: var(--f-heading);
	font-weight: var(--w-mid);
	font-size: clamp(25px, 3.6vw, var(--z-h2));
	letter-spacing: var(--e-close);
	line-height: var(--l-compact);
}

h3 {
	font-family: var(--f-text);
	font-weight: var(--w-mid);
	font-size: var(--z-display-3);
	line-height: 1.25;
}

h4 {
	font-family: var(--f-text);
	font-weight: var(--w-mid);
	font-size: var(--z-h4);
	line-height: 1.3;
}

p {
	margin: 0 0 var(--s-snug);
}

p:last-child {
	margin-bottom: 0;
}

ul,
ol {
	margin: 0 0 var(--s-snug);
	padding-inline-start: var(--s-base);
}

li {
	margin-block-end: var(--s-tiny);
}

li:last-child {
	margin-block-end: 0;
}

strong {
	font-weight: 700;
	color: var(--k-front);
}

em {
	font-style: italic;
}

a {
	color: var(--k-action);
	text-decoration: none;
}

table {
	border-collapse: collapse;
	width: 100%;
}

button {
	font: inherit;
	cursor: pointer;
}

main {
	display: block;
}

/* --------------------------------------------------------------------------
   4. Accessibility, motion preference
   -------------------------------------------------------------------------- */
.skiplink {
	position: absolute;
	inset-inline-start: var(--s-snug);
	z-index: 200;
	background: var(--k-action);
	color: #16181a;
	font-family: var(--f-heading);
	font-weight: var(--w-thick);
	font-size: var(--z-h6);
	padding: var(--s-tiny) var(--s-snug);
	border-radius: var(--r-tiny);
}

.skiplink:not(:focus) {
	top: -200px !important;
}

.skiplink:focus {
	top: var(--s-tiny);
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

:focus-visible {
	outline: var(--b-medium) solid var(--k-action);
	outline-offset: var(--s-hair);
}

/* reveal on scroll — blur-in, distance 18, once */
[data-enter] {
	opacity: 0;
	filter: blur(10px);
	transform: translateY(18px);
	transition:
		opacity var(--t-gentle) var(--x-out),
		filter var(--t-gentle) var(--x-out),
		transform var(--t-gentle) var(--x-out);
}

[data-enter].is-live {
	opacity: 1;
	filter: blur(0);
	transform: none;
}

@keyframes rvRise {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

@keyframes rvDrop {
	from {
		transform: translateY(-100%);
	}
	to {
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
		scroll-behavior: auto !important;
	}
	[data-enter] {
		opacity: 1;
		filter: none;
		transform: none;
	}
}

/* --------------------------------------------------------------------------
   5. Shared shells
   -------------------------------------------------------------------------- */
.age-guard-guts,
.rotunda-light-strip-guts,
.rotunda-light-rank-guts,
.banner-cool-guts,
.brochure-grave-guts,
.porte-clean-guts,
.medaillon-opus-guts,
.arbor-fine-guts,
.plaque-bright-guts,
.voussure-prime-guts,
.mosaic-keen-guts,
.vignette-fresh-guts,
.fenetre-neat-guts,
.armoire-fast-guts,
.arch-crisp-guts,
.console-light-guts,
.arcade-classic-guts,
.spandrel-alt-guts,
.pupitre-noble-guts {
	width: 100%;
	max-width: calc(var(--v-main) + 2 * var(--v-edge-wide));
	margin-inline: auto;
	padding-inline: var(--v-edge-wide);
}

/* --------------------------------------------------------------------------
   6. 18+ advisory strip (RG-01 — band above the header)
   -------------------------------------------------------------------------- */
.age-guard {
	background: var(--k-advisory);
	color: var(--k-front);
	font-size: var(--z-xs);
	line-height: 1.35;
	padding-block: var(--s-tiny);
}

.age-guard-guts {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--s-tiny);
	text-align: center;
	flex-wrap: wrap;
}

.age-guard-mark {
	font-family: var(--f-heading);
	font-weight: var(--w-thick);
	letter-spacing: var(--e-loose);
}

.age-guard-hop {
	color: var(--k-front);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.age-guard-hop:hover {
	color: var(--k-gradient-light);
	background: transparent;
}

@media (max-width: 620px) {
	.age-guard-say {
		display: none;
	}
}

/* --------------------------------------------------------------------------
   7. Header — HEAD-UTIL (thin service strip + main row), static
   -------------------------------------------------------------------------- */
.rotunda-light {
	position: relative;
	z-index: 40;
	background: var(--k-ground);
}

.rotunda-light-strip {
	background: #0c0d0e;
	border-block-end: var(--b-light) dashed var(--k-edge);
	font-size: var(--z-xs);
	color: var(--k-soft-text);
	min-height: 34px;
	display: flex;
	align-items: center;
}

.rotunda-light-strip-guts {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s-snug);
	padding-block: var(--s-hair);
}

.rotunda-light-desk {
	letter-spacing: var(--e-loose);
	text-transform: uppercase;
}

.rotunda-light-aside {
	display: flex;
	align-items: center;
	gap: var(--s-snug);
}

.rotunda-light-aside-hop {
	color: var(--k-soft-text);
	font-size: var(--z-xs);
}

.rotunda-light-aside-hop:hover {
	color: var(--k-action);
	background: transparent;
}

/* main row */
.rotunda-light-rank {
	min-height: 62px;
	display: flex;
	align-items: center;
}

.rotunda-light-rank-guts {
	display: flex;
	align-items: center;
	gap: var(--s-snug);
	padding-block: var(--s-tiny);
	padding-inline: var(--s-snug);
	max-width: calc(var(--v-main) + 2 * var(--v-edge-wide));
}

/* burger sits first in the DOM, third visually */
.rotunda-light-nav-trigger {
	order: 3;
	display: none;
	align-items: center;
	gap: var(--s-tiny);
	margin-inline-start: auto;
	background: transparent;
	color: var(--k-front);
	border: var(--b-light) solid var(--k-border-strong);
	border-radius: 0;
	min-height: 44px;
	padding: var(--s-tiny) var(--s-snug);
	font-family: var(--f-heading);
	font-weight: var(--w-mid);
	font-size: var(--z-h6);
	text-transform: uppercase;
	letter-spacing: var(--e-loose);
}

.rotunda-light-nav-trigger:hover {
	background: var(--k-layer);
	color: var(--k-action);
}

.rotunda-light-glyph {
	position: relative;
	display: block;
	width: 18px;
	height: 2px;
	background: currentColor;
	flex: 0 0 auto;
}

.rotunda-light-glyph::before,
.rotunda-light-glyph::after {
	content: "";
	position: absolute;
	inset-inline: 0;
	height: 2px;
	background: currentColor;
}

.rotunda-light-glyph::before {
	top: -6px;
}

.rotunda-light-glyph::after {
	top: 6px;
}

/* logo — plate frame, size step "l" */
.rotunda-light-badge {
	order: 1;
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.rotunda-light-plate {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--k-gradient-light);
	border-radius: var(--r-hair);
	padding: 5px 12px;
	flex: 0 0 auto;
}

.rotunda-light-badge-pic {
	height: 48px;
	width: auto;
	flex-shrink: 0;
}

/* desktop nav */
.rotunda-light-bar {
	order: 2;
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	justify-content: flex-start;
	margin-inline-start: var(--s-snug);
}

.rotunda-light-chain {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: var(--s-tiny);
	flex-wrap: nowrap;
}

.rotunda-light-slot {
	margin: 0;
	position: relative;
	display: flex;
	align-items: center;
}

/* navDivider: bar */
.rotunda-light-slot + .rotunda-light-slot::before {
	content: "";
	display: block;
	width: 1px;
	height: 12px;
	margin-inline-end: var(--s-tiny);
	background: var(--k-border-strong);
	flex: 0 0 auto;
}

.rotunda-light-hop {
	position: relative;
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	color: var(--k-soft-text);
	font-family: var(--f-text);
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	padding-block: var(--s-tiny);
	min-height: 44px;
	transition: color var(--t-short) var(--x-out);
}

.rotunda-light-hop:hover {
	color: var(--k-front);
	background: transparent;
}

.rotunda-light-hop::after {
	content: "";
	position: absolute;
	inset-inline: 0;
	bottom: 8px;
	height: 2px;
	background: var(--k-action);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform var(--t-short) var(--x-out);
}

.rotunda-light-hop:hover::after {
	transform: scaleX(1);
}

/* activeMark: topline */
.rotunda-light-hop.is-here {
	color: var(--k-front);
	background: transparent;
	box-shadow: inset 0 3px 0 0 var(--k-action);
}

.rotunda-light-hop.is-here::after {
	transform: scaleX(0);
}

/* priority+ overflow control */
.rotunda-light-more {
	order: 2;
	position: relative;
	display: none;
	flex: 0 0 auto;
}

.rotunda-light-more.is-shown {
	display: block;
}

.rotunda-light-more-trigger {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: transparent;
	border: var(--b-light) dashed var(--k-border-strong);
	border-radius: 0;
	color: var(--k-soft-text);
	font-family: var(--f-text);
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	min-height: 44px;
	padding-inline: var(--s-tiny);
	white-space: nowrap;
}

.rotunda-light-more-trigger:hover {
	color: var(--k-front);
	background: var(--k-layer);
}

.rotunda-light-more-trigger::after {
	content: "";
	width: 0;
	height: 0;
	border-inline: 4px solid transparent;
	border-block-start: 5px solid currentColor;
	transition: transform var(--t-short) var(--x-out);
}

.rotunda-light-more-trigger[aria-expanded="true"]::after {
	transform: rotate(180deg);
}

.rotunda-light-spill {
	position: absolute;
	inset-inline-end: 0;
	top: calc(100% + 6px);
	min-width: 210px;
	max-height: 60vh;
	overflow-y: auto;
	background: var(--k-layer);
	border: var(--b-light) solid var(--k-edge);
	border-radius: var(--r-hair);
	box-shadow: var(--d-wide);
	padding: var(--s-tiny);
	margin: 0;
	list-style: none;
	display: none;
	z-index: 60;
}

.rotunda-light-spill.is-open {
	display: block;
}

.rotunda-light-spill .rotunda-light-slot {
	display: block;
}

.rotunda-light-spill .rotunda-light-slot::before {
	display: none;
}

.rotunda-light-spill .rotunda-light-hop {
	display: flex;
	width: 100%;
	padding-inline: var(--s-tiny);
	min-height: 40px;
}

.rotunda-light-spill .rotunda-light-hop::after {
	display: none;
}

/* header buttons — one-outline, square */
.rotunda-light-tools {
	order: 4;
	display: flex;
	align-items: center;
	gap: var(--s-tiny);
	margin-inline-start: auto;
	flex: 0 0 auto;
}

.rotunda-light-offer,
.rotunda-light-quiet-go {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
	flex-shrink: 0;
	min-height: 44px;
	padding-inline: var(--s-snug);
	border-radius: 0;
	font-family: var(--f-heading);
	font-weight: var(--w-thick);
	font-size: var(--z-h6);
	text-transform: uppercase;
	letter-spacing: var(--e-loose);
	border: var(--b-medium) solid var(--k-action);
	background: transparent;
	color: var(--k-action);
	transition:
		background var(--t-short) var(--x-out),
		color var(--t-short) var(--x-out);
}

.rotunda-light-offer::after,
.rotunda-light-quiet-go::after {
	content: "\2192";
	transition: transform var(--t-short) var(--x-out);
}

.rotunda-light-offer:hover,
.rotunda-light-quiet-go:hover {
	background: var(--k-action);
	color: #16181a;
}

.rotunda-light-offer:hover::after,
.rotunda-light-quiet-go:hover::after {
	transform: translateX(4px);
}

.rotunda-light-quiet-go {
	border-color: var(--k-border-strong);
	color: var(--k-front);
}

.rotunda-light-quiet-go:hover {
	background: var(--k-layer);
	color: var(--k-action);
}

/* mobile drawer — flat list of every section */
.rotunda-light-pane {
	display: none;
	border-block-start: var(--b-light) dashed var(--k-edge);
	background: var(--k-layer);
	padding-block: var(--s-tiny);
}

.rotunda-light-pane.is-open {
	display: block;
}

.rotunda-light-pane-bar {
	display: block;
	max-height: 70vh;
	overflow-y: auto;
	padding-inline: var(--v-edge-wide);
}

.rotunda-light-pane-chain {
	list-style: none;
	margin: 0;
	padding: 0;
}

.rotunda-light-pane-slot {
	margin: 0;
}

.rotunda-light-pane-hop {
	display: block;
	color: var(--k-front);
	font-size: var(--z-petite);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: var(--e-loose);
	padding-block: var(--s-tiny);
	min-height: 44px;
	line-height: 24px;
}

.rotunda-light-pane-hop:hover {
	color: var(--k-action);
	background: transparent;
}

.rotunda-light-pane-hop.is-here {
	color: var(--k-action);
	background: transparent;
}

.rotunda-light-pane-tools {
	padding-inline: var(--v-edge-wide);
	padding-block-start: var(--s-tiny);
}

@media (max-width: 1099px) {
	.rotunda-light-nav-trigger {
		display: inline-flex;
	}
	.rotunda-light-bar,
	.rotunda-light-more {
		display: none !important;
	}
	.rotunda-light-tools {
		order: 2;
		margin-inline-start: auto;
	}
	.rotunda-light-nav-trigger {
		margin-inline-start: 0;
	}
	.rotunda-light-rank-guts {
		gap: var(--s-tiny);
	}
}

@media (max-width: 720px) {
	.rotunda-light-strip-guts {
		justify-content: center;
	}
	.rotunda-light-desk {
		display: none;
	}
	.rotunda-light-tools {
		display: none;
	}
	.rotunda-light-nav-trigger {
		order: 2;
	}
	.rotunda-light-badge-pic {
		height: 40px;
	}
}

/* --------------------------------------------------------------------------
   8. Hero — HERO-10 (tall vertical letterform)
   -------------------------------------------------------------------------- */
.brochure-grave {
	position: relative;
	display: flex;
	align-items: center;
	min-height: calc(100vh - 200px);
	padding-block: var(--u-sec-y);
	overflow: hidden;
	background-color: #0e0f10;
	background-image:
		linear-gradient(115deg, rgba(18, 19, 20, 0.94) 34%, rgba(18, 19, 20, 0.62) 100%),
		url("/img/tableau-61.webp");
	background-size: cover;
	background-position: center right;
	border-block-end: var(--b-light) dashed var(--k-edge);
}

.brochure-grave-guts {
	position: relative;
	width: 100%;
}

.brochure-grave-glyph {
	position: absolute;
	top: 0;
	inset-inline-start: max(var(--v-edge-wide), calc((100vw - var(--v-main)) / 2));
	height: 100%;
	width: 30%;
	max-width: calc(var(--v-main) * 0.3);
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-family: var(--f-heading);
	font-weight: var(--w-thick);
	font-size: 60vh;
	line-height: 0.8;
	opacity: 0.05;
	pointer-events: none;
	user-select: none;
	z-index: 0;
}

.brochure-grave-inside {
	position: relative;
	z-index: 1;
	padding-inline-start: 35%;
	max-width: 100%;
	animation: rvRise var(--t-gentle) var(--x-out) both;
}

.brochure-grave-eyebrow {
	display: block;
	font-family: var(--f-text);
	font-size: var(--z-h6);
	font-weight: var(--w-mid);
	letter-spacing: var(--e-loose);
	text-transform: uppercase;
	color: var(--k-action);
	margin-block-end: var(--s-snug);
}

.brochure-grave-top {
	max-width: 17ch;
	font-size: clamp(30px, 4.6vw, 64px);
}

.brochure-grave-under {
	margin-block-start: var(--s-base);
	max-width: var(--v-text);
	color: var(--k-soft-text);
	font-size: var(--z-h5);
	line-height: var(--l-relaxed);
}

.brochure-grave-tools {
	margin-block-start: var(--s-base);
	display: flex;
	flex-wrap: wrap;
	gap: var(--s-tiny);
	align-items: center;
}

.brochure-grave-terms {
	margin-block-start: var(--s-snug);
	font-size: var(--z-xs);
	color: var(--k-soft-text);
	max-width: var(--v-text);
}

@media (max-width: 880px) {
	.brochure-grave {
		min-height: calc(100vh - 170px);
		background-position: center;
		background-image:
			linear-gradient(170deg, rgba(18, 19, 20, 0.95) 40%, rgba(18, 19, 20, 0.82) 100%),
			url("/img/tableau-61.webp");
	}
	.brochure-grave-glyph {
		inset-inline-start: var(--v-inset-mobile);
		width: 46%;
		font-size: 34vh;
	}
	.brochure-grave-inside {
		padding-inline-start: 0;
	}
	.brochure-grave-top {
		max-width: none;
	}
}

/* --------------------------------------------------------------------------
   9. Page header — PHEAD-03 (big block header)
   -------------------------------------------------------------------------- */
.porte-clean {
	background: var(--k-base);
	color: var(--k-front);
	padding-block: var(--u-sec-y);
}

.porte-clean-top {
	color: var(--k-front);
}

.porte-clean-under {
	margin-block-start: var(--s-snug);
	color: var(--k-front);
	font-size: var(--z-h5);
	line-height: var(--l-relaxed);
	max-width: 62ch;
}

/* --------------------------------------------------------------------------
   10. Prose — PROSE-19 (corner marker before the heading), roomy density
   -------------------------------------------------------------------------- */
.medaillon-opus {
	padding-block: var(--u-sec-y);
}

.medaillon-opus + .medaillon-opus {
	padding-block-start: 0;
}

.medaillon-opus-lede {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: var(--s-snug);
	margin-block: 0 var(--s-base);
}

.medaillon-opus-lede::before {
	content: "";
	flex: 0 0 auto;
	width: 14px;
	height: 14px;
	margin-block-start: 0.42em;
	background: var(--u-glow);
	border-block-start: var(--b-medium) solid var(--k-action);
	border-inline-start: var(--b-medium) solid var(--k-action);
}

.medaillon-opus-line {
	color: var(--k-soft-text);
	line-height: var(--l-relaxed);
	margin-block-end: var(--s-snug);
}

.medaillon-opus-chain {
	color: var(--k-soft-text);
	line-height: var(--l-relaxed);
	list-style: none;
	padding-inline-start: 0;
}

.medaillon-opus-chain li {
	position: relative;
	padding-inline-start: var(--s-base);
}

.medaillon-opus-chain li::before {
	content: "";
	position: absolute;
	inset-inline-start: 2px;
	top: 0.62em;
	width: 8px;
	height: 8px;
	background: var(--k-action);
}

.medaillon-opus-rank {
	color: var(--k-soft-text);
	line-height: var(--l-relaxed);
	counter-reset: rvstep;
	list-style: none;
	padding-inline-start: 0;
}

.medaillon-opus-rank li {
	position: relative;
	counter-increment: rvstep;
	padding-inline-start: var(--s-base);
}

.medaillon-opus-rank li::before {
	content: counter(rvstep) ".";
	position: absolute;
	inset-inline-start: 0;
	color: var(--k-action);
	font-family: var(--f-heading);
	font-weight: var(--w-thick);
	font-size: var(--z-petite);
}

.medaillon-opus-line a,
.medaillon-opus-chain a,
.medaillon-opus-rank a {
	color: var(--k-action);
	background-image: linear-gradient(currentColor, currentColor);
	background-repeat: no-repeat;
	background-position: 0 100%;
	background-size: 0% 1px;
	transition: background-size var(--t-short) var(--x-out);
}

.medaillon-opus-line a:hover,
.medaillon-opus-chain a:hover,
.medaillon-opus-rank a:hover {
	background-size: 100% 1px;
	color: var(--k-accent-pressed);
}

.medaillon-opus-shot {
	margin: 0 0 var(--s-base);
}

.medaillon-opus-shot img {
	width: 100%;
	height: auto;
	max-height: 430px;
	object-fit: cover;
	border: var(--b-light) dashed var(--k-edge);
	border-radius: var(--r-snug);
}

.medaillon-opus-note {
	margin-block-start: var(--s-tiny);
	font-size: var(--z-xs);
	color: var(--k-soft-text);
}

/* --------------------------------------------------------------------------
   11. Items grid — GRID-12 (side-by-side initial block + text)
   -------------------------------------------------------------------------- */
.arbor-fine {
	padding-block: var(--u-sec-y);
	background: #0f1011;
}

.arbor-fine-lede {
	margin-block-end: var(--s-base);
}

.arbor-fine-chain {
	list-style: none;
	margin: 0;
	padding: 0;
}

.arbor-fine-slot {
	display: flex;
	gap: var(--s-wide);
	padding: var(--s-wide) var(--s-snug);
	border-block-end: var(--b-light) dashed var(--k-edge);
	margin: 0;
	transition: background var(--t-regular) var(--x-out);
}

.arbor-fine-slot:hover {
	background: rgba(255, 255, 255, 0.02);
}

.arbor-fine-sigil {
	flex: 0 0 auto;
	width: 120px;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--k-action);
	color: #16181a;
	border-radius: var(--r-base);
	font-family: var(--f-heading);
	font-weight: var(--w-thick);
	font-size: 52px;
	line-height: 1;
}

.arbor-fine-slot:nth-child(3n + 2) .arbor-fine-sigil {
	background: var(--k-gradient-mid);
}

.arbor-fine-slot:nth-child(3n + 3) .arbor-fine-sigil {
	background: var(--k-gradient-light);
}

.arbor-fine-inside {
	min-width: 0;
}

.arbor-fine-top {
	font-family: var(--f-text);
	font-weight: 700;
	font-size: var(--z-h4);
	margin-block-end: var(--s-tiny);
	color: var(--k-front);
}

.arbor-fine-line {
	color: var(--k-soft-text);
	line-height: var(--l-even);
	margin: 0;
}

@media (max-width: 720px) {
	.arbor-fine-slot {
		flex-direction: column;
		gap: var(--s-snug);
		padding-inline: 0;
	}
	.arbor-fine-sigil {
		width: 80px;
		font-size: 34px;
	}
}

/* --------------------------------------------------------------------------
   12. Data table — TABLE-05 (compact dense)
   -------------------------------------------------------------------------- */
.plaque-bright {
	padding-block: var(--u-sec-y);
}

.plaque-bright-lede {
	margin-block-end: var(--s-snug);
}

.plaque-bright-note {
	color: var(--k-soft-text);
	font-size: var(--z-petite);
	margin-block-end: var(--s-snug);
}

.plaque-bright-frame {
	overflow-x: auto;
	border: var(--b-light) dashed var(--k-edge);
	border-radius: var(--r-snug);
}

.plaque-bright-grid {
	width: 100%;
	min-width: 520px;
	font-size: var(--z-petite);
}

.plaque-bright-grid th {
	position: sticky;
	top: 0;
	z-index: 1;
	background: var(--k-layer);
	color: var(--k-front);
	text-align: start;
	font-family: var(--f-text);
	font-size: var(--z-xs);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: var(--e-loose);
	padding: var(--s-snug);
}

.plaque-bright-grid td {
	padding: var(--s-tiny) var(--s-snug);
	border-block-start: var(--b-light) solid var(--u-rule);
	color: var(--k-soft-text);
	vertical-align: top;
}

.plaque-bright-grid tr:nth-child(even) td {
	background: rgba(255, 255, 255, 0.02);
}

.plaque-bright-grid td:first-child {
	color: var(--k-front);
	font-weight: 600;
}

@media (max-width: 720px) {
	.plaque-bright-grid {
		min-width: 420px;
		font-size: var(--z-xs);
	}
	.plaque-bright-grid th,
	.plaque-bright-grid td {
		padding: var(--s-tiny);
	}
}

/* --------------------------------------------------------------------------
   13. Reviews — REV-08 (avatar-initials cards)
   -------------------------------------------------------------------------- */
.voussure-prime {
	padding-block: var(--u-sec-y);
	background: #0f1011;
}

.voussure-prime-lede {
	margin-block-end: var(--s-base);
}

.voussure-prime-lattice {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--s-snug);
	list-style: none;
	margin: 0;
	padding: 0;
}

.voussure-prime-box {
	margin: 0;
	padding: var(--s-base);
	background: var(--k-layer);
	border: var(--b-light) dashed var(--k-edge);
	border-radius: var(--r-base);
	transition: box-shadow var(--t-regular) var(--x-out);
}

.voussure-prime-box:hover {
	box-shadow: var(--d-wide);
}

.voussure-prime-crown {
	display: flex;
	align-items: center;
	gap: var(--s-tiny);
	margin-block-end: var(--s-snug);
}

.voussure-prime-avatar {
	flex: 0 0 auto;
	width: 48px;
	height: 48px;
	border-radius: var(--r-circle);
	background: var(--k-action);
	color: #16181a;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--f-heading);
	font-weight: var(--w-thick);
	font-size: var(--z-h5);
}

.voussure-prime-box:nth-child(3n + 2) .voussure-prime-avatar {
	background: var(--k-gradient-mid);
}

.voussure-prime-box:nth-child(3n + 3) .voussure-prime-avatar {
	background: var(--k-gradient-light);
}

.voussure-prime-who {
	min-width: 0;
}

.voussure-prime-name {
	display: block;
	font-weight: 600;
	font-size: var(--z-h5);
	color: var(--k-front);
	font-style: normal;
}

.voussure-prime-moment {
	display: block;
	font-size: var(--z-xs);
	color: var(--k-soft-text);
}

.voussure-prime-stars {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-block-end: var(--s-tiny);
	color: var(--k-action);
	font-size: var(--z-h6);
	letter-spacing: 0.12em;
}

.voussure-prime-score {
	color: var(--k-soft-text);
	font-size: var(--z-xs);
	letter-spacing: var(--e-normal);
}

.voussure-prime-line {
	color: var(--k-soft-text);
	line-height: var(--l-even);
	font-size: var(--z-petite);
	margin: 0;
}

@media (max-width: 1024px) {
	.voussure-prime-lattice {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.voussure-prime-lattice {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* --------------------------------------------------------------------------
   14. FAQ — FAQ-10 (sidebar-style two-column)
   -------------------------------------------------------------------------- */
.mosaic-keen {
	padding-block: var(--u-sec-y);
}

.mosaic-keen-lattice {
	display: grid;
	grid-template-columns: 40% minmax(0, 1fr);
	gap: var(--s-wide);
	align-items: start;
}

.mosaic-keen-aside {
	position: sticky;
	top: var(--s-wide);
	padding: var(--s-base);
	background: var(--k-layer);
	border: var(--b-light) dashed var(--k-edge);
	border-radius: var(--r-base);
}

.mosaic-keen-lede {
	margin-block-end: var(--s-snug);
}

.mosaic-keen-note {
	color: var(--k-soft-text);
	font-size: var(--z-petite);
	margin: 0;
}

.mosaic-keen-chain {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--s-base);
}

.mosaic-keen-slot {
	margin: 0;
	border-block-end: var(--b-light) dashed var(--k-edge);
	padding-block-end: var(--s-snug);
}

.mosaic-keen-ask {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	gap: var(--s-snug);
	cursor: pointer;
	list-style: none;
	color: var(--k-front);
	font-family: var(--f-text);
	font-weight: var(--w-mid);
	font-size: var(--z-h4);
	line-height: 1.35;
}

.mosaic-keen-ask::-webkit-details-marker {
	display: none;
}

.mosaic-keen-ask h3 {
	font: inherit;
	margin: 0;
	min-width: 0;
}

.mosaic-keen-pip {
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	position: relative;
	margin-block-start: 4px;
	transition: transform var(--t-regular) var(--x-out);
}

.mosaic-keen-pip::before,
.mosaic-keen-pip::after {
	content: "";
	position: absolute;
	background: var(--k-action);
}

.mosaic-keen-pip::before {
	inset-inline: 0;
	top: 10px;
	height: 2px;
}

.mosaic-keen-pip::after {
	inset-block: 0;
	inset-inline-start: 10px;
	width: 2px;
	transition: opacity var(--t-regular) var(--x-out);
}

.mosaic-keen-slot[open] .mosaic-keen-pip {
	transform: rotate(180deg);
}

.mosaic-keen-slot[open] .mosaic-keen-pip::after {
	opacity: 0;
}

.mosaic-keen-answer {
	margin-block-start: var(--s-snug);
	color: var(--k-soft-text);
	line-height: var(--l-relaxed);
}

.mosaic-keen-answer p {
	margin-block-end: 0;
}

@media (max-width: 1024px) {
	.mosaic-keen-lattice {
		grid-template-columns: minmax(0, 1fr);
		gap: var(--s-base);
	}
	.mosaic-keen-aside {
		position: static;
	}
}

/* --------------------------------------------------------------------------
   15. CTA block — CTA-03 (split visual + text), mode B gradient panel
   -------------------------------------------------------------------------- */
.vignette-fresh {
	padding-block: var(--u-sec-y);
}

.vignette-fresh-lattice {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border: var(--b-light) dashed var(--k-border-strong);
	border-radius: var(--r-base);
	overflow: hidden;
}

.vignette-fresh-inside {
	padding: var(--s-vast) var(--s-wide);
	background: var(--k-ground);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.vignette-fresh-top {
	font-family: var(--f-heading);
	font-weight: var(--w-thick);
	color: var(--k-front);
}

.vignette-fresh-line {
	margin-block: var(--s-snug);
	color: var(--k-soft-text);
	line-height: var(--l-relaxed);
	max-width: var(--v-text);
}

.vignette-fresh-terms {
	margin-block-start: var(--s-snug);
	font-size: var(--z-xs);
	color: var(--k-soft-text);
}

.vignette-fresh-tools {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s-tiny);
	align-items: center;
}

.vignette-fresh-panel {
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--k-action), var(--k-base));
	color: #16181a;
	font-family: var(--f-heading);
	font-weight: var(--w-thick);
	font-size: clamp(56px, 9vw, 118px);
	line-height: 1;
	letter-spacing: var(--e-close);
	text-align: center;
	padding: var(--s-base);
}

@media (max-width: 880px) {
	.vignette-fresh-lattice {
		grid-template-columns: minmax(0, 1fr);
	}
	.vignette-fresh-inside {
		padding: var(--s-wide) var(--s-base);
	}
	.vignette-fresh-panel {
		min-height: 200px;
		order: 2;
	}
}

/* --------------------------------------------------------------------------
   16. Inline CTA — INLINE-CTA-06 (dual-button mini bar)
   -------------------------------------------------------------------------- */
.fenetre-neat {
	display: block;
	padding-block: var(--s-base);
}

.fenetre-neat-guts {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--s-tiny);
	text-align: center;
}

.fenetre-neat-line {
	max-width: 600px;
	margin: 0;
	color: var(--k-soft-text);
	font-size: var(--z-body);
}

.fenetre-neat-tools {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s-tiny);
	justify-content: center;
}

.fenetre-neat-offer,
.fenetre-neat-ghost-go {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 48px;
	padding-inline: var(--s-base);
	border-radius: var(--r-tiny);
	font-family: var(--f-heading);
	font-weight: var(--w-thick);
	font-size: var(--z-h6);
	text-transform: uppercase;
	letter-spacing: var(--e-loose);
	transition:
		background var(--t-short) var(--x-out),
		color var(--t-short) var(--x-out);
}

.fenetre-neat-offer {
	background: var(--k-action);
	color: #16181a;
	border: var(--b-medium) solid var(--k-action);
}

.fenetre-neat-offer:hover {
	background: var(--k-accent-pressed);
	color: #16181a;
}

.fenetre-neat-ghost-go {
	background: transparent;
	border: var(--b-light) solid var(--k-border-strong);
	color: var(--k-front);
}

.fenetre-neat-ghost-go:hover {
	background: var(--k-layer);
	color: var(--k-front);
}

/* --------------------------------------------------------------------------
   17. Author byline — BYLINE-01 (compact inline, end of article)
   -------------------------------------------------------------------------- */
.armoire-fast {
	display: block;
	padding-block: var(--s-base);
	border-block-start: var(--b-light) dashed var(--k-edge);
	margin-block-start: var(--s-base);
}

.armoire-fast-guts {
	display: flex;
	align-items: center;
	gap: var(--s-snug);
}

.armoire-fast-avatar {
	flex: 0 0 auto;
	display: block;
	width: 56px;
	height: 56px;
	border-radius: var(--r-circle);
	overflow: hidden;
	border: var(--b-medium) solid var(--k-action);
}

.armoire-fast-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.armoire-fast-line {
	min-width: 0;
}

.armoire-fast-sign {
	margin: 0;
	font-size: var(--z-petite);
	color: var(--k-soft-text);
}

.armoire-fast-name {
	color: var(--k-action);
	font-weight: 600;
}

.armoire-fast-name:hover {
	color: var(--k-accent-pressed);
	background: transparent;
}

.armoire-fast-craft {
	margin: 0;
	font-size: var(--z-xs);
	color: var(--k-soft-text);
}

/* --------------------------------------------------------------------------
   18. Author card — AUTH-07 (quote style with portrait)
   -------------------------------------------------------------------------- */
.arch-crisp {
	padding-block: var(--u-sec-y);
}

.arch-crisp-box {
	display: grid;
	grid-template-columns: 100px minmax(0, 1fr);
	gap: var(--s-wide);
	padding: var(--s-roomy) var(--s-wide);
	background: var(--k-layer);
	border-radius: var(--r-base);
	border-inline-start: 4px solid var(--k-action);
}

.arch-crisp-avatar {
	width: 100px;
	height: 100px;
	border-radius: var(--r-circle);
	overflow: hidden;
	flex: 0 0 auto;
}

.arch-crisp-avatar img {
	width: 100px;
	height: 100px;
	object-fit: cover;
	display: block;
}

.arch-crisp-inside {
	min-width: 0;
}

.arch-crisp-mark {
	display: block;
	font-family: var(--f-heading);
	font-weight: var(--w-thick);
	font-size: 62px;
	line-height: 0.6;
	color: var(--k-action);
	margin-block-end: var(--s-snug);
}

.arch-crisp-bio {
	font-style: italic;
	font-size: var(--z-h5);
	line-height: var(--l-relaxed);
	color: var(--k-front);
	margin: 0;
}

.arch-crisp-sign {
	margin-block-start: var(--s-snug);
	font-size: var(--z-petite);
	letter-spacing: var(--e-loose);
	color: var(--k-soft-text);
}

.arch-crisp-skills {
	margin-block-start: var(--s-base);
	padding-block-start: var(--s-snug);
	border-block-start: var(--b-light) dashed var(--k-edge);
}

.arch-crisp-skills-chain {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: var(--s-tiny);
}

.arch-crisp-skills-slot {
	margin: 0;
	padding: 6px var(--s-tiny);
	border: var(--b-light) dashed var(--k-border-strong);
	border-radius: var(--r-pill);
	font-size: var(--z-xs);
	color: var(--k-soft-text);
}

.arch-crisp-articles {
	display: block;
	margin-block-start: var(--s-base);
}

.arch-crisp-articles-lede {
	font-size: var(--z-h4);
	margin-block-end: var(--s-snug);
}

.arch-crisp-chain {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--s-tiny);
}

.arch-crisp-slot {
	margin: 0;
}

.arch-crisp-hop {
	display: block;
	padding: var(--s-tiny) var(--s-snug);
	border: var(--b-light) dashed var(--k-edge);
	border-radius: var(--r-snug);
	color: var(--k-soft-text);
	font-size: var(--z-petite);
	transition:
		border-color var(--t-short) var(--x-out),
		color var(--t-short) var(--x-out);
}

.arch-crisp-hop:hover {
	color: var(--k-action);
	border-color: var(--k-action);
	background: transparent;
}

@media (max-width: 720px) {
	.arch-crisp-box {
		grid-template-columns: minmax(0, 1fr);
		gap: var(--s-snug);
		padding: var(--s-base);
	}
	.arch-crisp-chain {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* --------------------------------------------------------------------------
   19. Legal — LEGAL-02 (numbered sections)
   -------------------------------------------------------------------------- */
.console-light {
	padding-block: var(--u-sec-y);
}

.console-light-intro {
	color: var(--k-soft-text);
	line-height: var(--l-relaxed);
	margin-block-end: var(--s-base);
}

.console-light-inside {
	counter-reset: legalpart;
}

.console-light-part {
	counter-increment: legalpart;
	margin-block-end: var(--s-base);
}

.console-light-part h3 {
	font-size: var(--z-display-3);
	color: var(--k-front);
	margin-block-end: var(--s-tiny);
}

.console-light-part h3::before {
	content: counter(legalpart) ". ";
	color: var(--k-action);
	font-family: var(--f-heading);
	font-weight: var(--w-thick);
	margin-inline-end: var(--s-tiny);
}

.console-light-part p {
	padding-inline-start: var(--s-base);
	color: var(--k-soft-text);
	line-height: var(--l-relaxed);
}

.console-light-touch {
	margin-block-start: var(--s-wide);
	padding: var(--s-base);
	background: var(--k-layer);
	border-radius: var(--r-base);
}

.console-light-touch h3 {
	font-size: var(--z-h4);
	margin-block-end: var(--s-tiny);
	color: var(--k-front);
}

.console-light-touch ul {
	margin: 0;
	padding-inline-start: var(--s-base);
	color: var(--k-soft-text);
}

.console-light-touch a {
	color: var(--k-action);
}

.console-light-caution {
	margin-block-start: var(--s-wide);
	padding: var(--s-base);
	background: rgba(164, 22, 26, 0.12);
	border-inline-start: var(--b-heavy) solid var(--k-advisory);
	border-radius: var(--r-tiny);
	font-size: var(--z-petite);
	color: var(--k-soft-text);
}

.console-light-stamp {
	margin-block-start: var(--s-snug);
	font-size: var(--z-xs);
	color: var(--k-soft-text);
}

@media (max-width: 720px) {
	.console-light-part p {
		padding-inline-start: 0;
	}
}

/* --------------------------------------------------------------------------
   20. Contact form — FORM-05 (bordered editorial)
   -------------------------------------------------------------------------- */
.arcade-classic {
	padding-block: var(--u-sec-y);
}

.arcade-classic-frame {
	border: var(--b-medium) solid var(--k-action);
	border-radius: var(--r-base);
	padding: var(--s-wide);
	max-width: 760px;
}

.arcade-classic-lede {
	margin-block-end: var(--s-snug);
}

.arcade-classic-intro {
	color: var(--k-soft-text);
	margin-block-end: var(--s-base);
}

.arcade-classic-cell {
	margin-block-end: var(--s-base);
}

.arcade-classic-tag {
	display: block;
	font-size: var(--z-xs);
	text-transform: uppercase;
	letter-spacing: var(--e-loose);
	color: var(--k-soft-text);
	margin-block-end: 6px;
}

.arcade-classic-input,
.arcade-classic-area {
	width: 100%;
	background: transparent;
	border: 0;
	border-block-end: var(--b-medium) dashed var(--u-rule-firm);
	color: var(--k-front);
	font-family: var(--f-text);
	font-size: var(--z-h4);
	padding-block: var(--s-tiny);
	border-radius: 0;
}

.arcade-classic-area {
	min-height: 130px;
	resize: vertical;
	line-height: var(--l-even);
}

.arcade-classic-input:focus,
.arcade-classic-area:focus {
	outline: none;
	border-block-end-color: var(--k-action);
}

.arcade-classic-send {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 52px;
	padding-inline: var(--s-base);
	border: var(--b-medium) solid var(--k-action);
	border-radius: var(--r-tiny);
	background: var(--k-action);
	color: #16181a;
	font-family: var(--f-heading);
	font-weight: var(--w-thick);
	font-size: var(--z-h6);
	text-transform: uppercase;
	letter-spacing: var(--e-loose);
	transition: background var(--t-short) var(--x-out);
}

.arcade-classic-send:hover {
	background: var(--k-accent-pressed);
	color: #16181a;
}

.arcade-classic-done {
	display: none;
	margin-block-start: var(--s-snug);
	padding: var(--s-snug);
	background: var(--u-wash);
	border-radius: var(--r-snug);
	color: var(--k-front);
	font-size: var(--z-petite);
}

.arcade-classic-done.is-live {
	display: block;
	opacity: 1;
	filter: none;
	transform: none;
}

.arcade-classic-desk {
	margin-block-start: var(--s-base);
	color: var(--k-soft-text);
	font-size: var(--z-petite);
}

.arcade-classic-desk a {
	color: var(--k-action);
}

@media (max-width: 720px) {
	.arcade-classic-frame {
		padding: var(--s-base);
	}
}

/* --------------------------------------------------------------------------
   21. Error block — ERR-02 (split editorial)
   -------------------------------------------------------------------------- */
.spandrel-alt {
	padding-block: var(--s-vast);
}

.spandrel-alt-lattice {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--s-wide);
	align-items: start;
}

.spandrel-alt-inside {
	display: flex;
	flex-direction: column;
	gap: var(--s-snug);
}

.spandrel-alt-top {
	max-width: var(--v-text);
}

.spandrel-alt-line {
	color: var(--k-soft-text);
	font-size: var(--z-h5);
	line-height: var(--l-even);
	max-width: var(--v-text);
	margin: 0;
}

.spandrel-alt-goto {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 52px;
	padding-inline: var(--s-base);
	background: var(--k-action);
	color: #16181a;
	border: var(--b-medium) solid var(--k-action);
	border-radius: var(--r-tiny);
	font-family: var(--f-heading);
	font-weight: var(--w-thick);
	font-size: var(--z-h6);
	text-transform: uppercase;
	letter-spacing: var(--e-loose);
	transition: background var(--t-short) var(--x-out);
}

.spandrel-alt-goto:hover {
	background: var(--k-accent-pressed);
	color: #16181a;
}

.spandrel-alt-digits {
	align-self: start;
	font-family: var(--f-heading);
	font-weight: var(--w-thick);
	font-size: clamp(120px, 24vw, 280px);
	line-height: var(--l-compact);
	background: linear-gradient(135deg, var(--k-action), var(--k-base));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-align: end;
}

@media (max-width: 880px) {
	.spandrel-alt-lattice {
		grid-template-columns: minmax(0, 1fr);
	}
	.spandrel-alt-digits {
		text-align: start;
	}
}

/* --------------------------------------------------------------------------
   22. Footer — FOOT-08 (newspaper masthead)
   -------------------------------------------------------------------------- */
.pupitre-noble {
	background: var(--k-ground);
	padding-block: var(--s-roomy);
	border-block-start: var(--b-light) dashed var(--k-edge);
}

.pupitre-noble-masthead {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--s-tiny);
	text-align: center;
	border-block: 4px double var(--k-front);
	padding-block: var(--s-base);
	margin-block-end: var(--s-wide);
}

.pupitre-noble-badge {
	display: inline-flex;
}

.pupitre-noble-plate {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--k-gradient-light);
	border-radius: var(--r-hair);
	padding: 6px 14px;
}

.pupitre-noble-badge-pic {
	height: 56px;
	width: auto;
}

.pupitre-noble-issue {
	margin: 0;
	font-size: var(--z-xs);
	letter-spacing: var(--e-loose);
	text-transform: uppercase;
	color: var(--k-soft-text);
}

.pupitre-noble-lattice {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--s-wide);
}

.pupitre-noble-lane {
	min-width: 0;
}

.pupitre-noble-lede {
	font-family: var(--f-heading);
	font-weight: var(--w-mid);
	font-size: var(--z-h4);
	letter-spacing: var(--e-close);
	color: var(--k-front);
	margin-block-end: var(--s-snug);
	padding-block-end: var(--s-tiny);
	border-block-end: var(--b-light) dashed var(--k-edge);
}

.pupitre-noble-chain {
	list-style: none;
	margin: 0;
	padding: 0;
	columns: 2;
	column-gap: var(--s-snug);
}

.pupitre-noble-legal-chain {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pupitre-noble-slot {
	margin-block-end: 6px;
	break-inside: avoid;
}

.pupitre-noble-hop {
	color: var(--k-soft-text);
	font-size: var(--z-petite);
	background-image: linear-gradient(currentColor, currentColor);
	background-repeat: no-repeat;
	background-position: 0 100%;
	background-size: 0% 1px;
	transition:
		background-size var(--t-short) var(--x-out),
		color var(--t-short) var(--x-out);
}

.pupitre-noble-hop:hover {
	color: var(--k-action);
	background-size: 100% 1px;
}

.pupitre-noble-facts {
	list-style: none;
	margin: 0 0 var(--s-snug);
	padding: 0;
}

.pupitre-noble-fact {
	display: flex;
	align-items: flex-start;
	gap: var(--s-tiny);
	margin-block-end: var(--s-tiny);
	color: var(--k-soft-text);
	font-size: var(--z-petite);
}

.pupitre-noble-mark {
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	fill: var(--k-action);
	margin-block-start: 2px;
}

.pupitre-noble-fine {
	color: var(--k-soft-text);
	font-size: var(--z-xs);
	line-height: var(--l-even);
	margin: 0;
}

.pupitre-noble-fine a {
	color: var(--k-action);
}

.pupitre-noble-base-rank {
	margin-block-start: var(--s-wide);
	padding-block-start: var(--s-snug);
	border-block-start: var(--b-light) dashed var(--k-edge);
	text-align: center;
}

.pupitre-noble-base-rank small {
	color: var(--k-soft-text);
	font-size: var(--z-xs);
	letter-spacing: var(--e-loose);
}

@media (max-width: 880px) {
	.pupitre-noble-lattice {
		grid-template-columns: minmax(0, 1fr);
		gap: var(--s-base);
	}
	.pupitre-noble-badge-pic {
		height: 44px;
	}
}

/* --------------------------------------------------------------------------
   23. Cookie notice — COOK-12 (top slide-down)
   -------------------------------------------------------------------------- */
.banner-cool {
	position: fixed;
	inset-block-start: 0;
	inset-inline: 0;
	z-index: 95;
	overflow: clip;
	background: var(--k-layer);
	border-block-end: var(--b-light) solid var(--u-rule-firm);
}

.banner-cool.is-gone {
	display: none;
}

.banner-cool-guts {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s-base);
	padding-block: var(--s-snug);
	animation: rvDrop var(--t-gentle) var(--x-out) both;
}

.banner-cool-words {
	margin: 0;
	color: var(--k-soft-text);
	font-size: var(--z-petite);
	line-height: var(--l-even);
}

.banner-cool-tools {
	display: flex;
	gap: var(--s-tiny);
	flex: 0 0 auto;
}

.banner-cool-accept,
.banner-cool-no {
	min-height: 44px;
	min-width: 96px;
	padding-inline: var(--s-snug);
	border-radius: var(--r-tiny);
	font-family: var(--f-heading);
	font-weight: var(--w-thick);
	font-size: var(--z-h6);
	text-transform: uppercase;
	letter-spacing: var(--e-loose);
	border: var(--b-medium) solid var(--k-action);
	transition: background var(--t-short) var(--x-out);
}

.banner-cool-accept {
	background: var(--k-action);
	color: #16181a;
}

.banner-cool-accept:hover {
	background: var(--k-accent-pressed);
	color: #16181a;
}

.banner-cool-no {
	background: transparent;
	border-color: var(--k-border-strong);
	color: var(--k-front);
}

.banner-cool-no:hover {
	background: #26292c;
	color: var(--k-front);
}

@media (max-width: 720px) {
	.banner-cool-guts {
		flex-direction: column;
		align-items: stretch;
		gap: 8px !important;
		padding: 12px 14px !important;
	}
	.banner-cool-words {
		font-size: 13px !important;
		line-height: 1.35 !important;
	}
	.banner-cool-tools {
		justify-content: stretch;
	}
	.banner-cool-accept,
	.banner-cool-no {
		flex: 1 1 0;
		min-height: 40px;
		padding: 8px 14px !important;
		font-size: 12px !important;
	}
}

/* --------------------------------------------------------------------------
   24. Offer buttons living inside blocks (geometry only — colour comes from
       the generated .*-act rules appended below)
   -------------------------------------------------------------------------- */
.rotunda-light-word {
	white-space: nowrap;
}

.brochure-grave-offer,
.brochure-grave-goto,
.vignette-fresh-offer,
.vignette-fresh-goto {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 52px;
	padding-inline: var(--s-base);
	border-radius: var(--r-tiny);
	font-family: var(--f-heading);
	font-weight: var(--w-thick);
	font-size: var(--z-h6);
	text-transform: uppercase;
	letter-spacing: var(--e-loose);
	transition:
		background var(--t-short) var(--x-out),
		color var(--t-short) var(--x-out);
}

.brochure-grave-offer,
.vignette-fresh-offer {
	background: var(--k-action);
	border: var(--b-medium) solid var(--k-action);
	color: #16181a;
}

.brochure-grave-offer:hover,
.vignette-fresh-offer:hover {
	background: var(--k-accent-pressed);
	color: #16181a;
}

.brochure-grave-goto,
.vignette-fresh-goto {
	background: transparent;
	border: var(--b-light) solid var(--k-border-strong);
	color: var(--k-front);
}

.brochure-grave-goto:hover,
.vignette-fresh-goto:hover {
	background: var(--k-layer);
	color: var(--k-front);
}

.brochure-grave-offer::after,
.vignette-fresh-offer::after,
.fenetre-neat-offer::after,
.spandrel-alt-goto::after,
.arcade-classic-send::after {
	content: "\2192";
	transition: transform var(--t-short) var(--x-out);
}

.brochure-grave-offer:hover::after,
.vignette-fresh-offer:hover::after,
.fenetre-neat-offer:hover::after,
.spandrel-alt-goto:hover::after,
.arcade-classic-send:hover::after {
	transform: translateX(4px);
}

.arcade-classic-form {
	display: block;
}

/* content pictures: image-gen ships 1024x1024 squares and 1024x1536 uprights.
   Cap the HEIGHT and let the width follow, so nothing is cropped and nothing
   eats a whole screen. */
.medaillon-opus-shot {
	max-width: 780px;
}

.medaillon-opus-shot img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 440px;
	object-fit: contain;
}

/* --------------------------------------------------------------------------
   25. Offer button skin — generated by scripts/cta-style.mjs
       fuchsia #C026D3, white label (4.71:1), looped "tilt" motion.
       Colour deliberately sits outside the site palette so the offer reads
       as an offer. The generator's block-wrapper rules are dropped: they
       carried a canonical spacing token and a banned class suffix.
   -------------------------------------------------------------------------- */
.trumeau-dive {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 var(--s-snug);
	min-height: 44px;
	border-radius: 0;
	border: var(--b-medium) solid var(--k-action);
	font-size: var(--z-h6);
	font-weight: var(--w-thick);
	letter-spacing: var(--e-loose);
	background: #c026d3;
	color: #ffffff;
	text-decoration: none;
	text-transform: uppercase;
	box-shadow: 0 0 0 2px rgba(18, 19, 20, 0.9);
	transition:
		background var(--t-regular) var(--x-smooth),
		color var(--t-regular) var(--x-smooth);
}

.trumeau-dive.trumeau-dive {
	color: #ffffff;
	text-decoration: none;
}

.trumeau-dive:hover {
	background: #a21caf;
	color: #ffffff;
	animation: none;
}

.trumeau-dive.trumeau-dive:hover {
	color: #ffffff;
	text-decoration: none;
}

.trumeau-dive:hover::after {
	animation: none;
}

.trumeau-dive:active {
	background: #86198f;
	color: #ffffff;
}

.trumeau-dive:focus-visible {
	outline: 3px solid #121314;
	outline-offset: 3px;
}

@keyframes trumeau-glow {
	0% {
		transform: rotate(0);
	}
	34.615% {
		transform: rotate(1.6deg);
	}
	69.231%,
	100% {
		transform: rotate(0);
	}
}

.trumeau-dive {
	animation: trumeau-glow 1.3s ease-out infinite;
	transform-origin: 50% 90%;
}

@media (prefers-reduced-motion: reduce) {
	.trumeau-dive,
	.trumeau-dive::after {
		animation: none !important;
		transition: none !important;
	}
}

@media (max-width: 1136px) {
  .rotunda-light-bar,
  .rotunda-light-chain,
  .rotunda-light-more,
  .rotunda-light-tools { display: none !important; }
  .rotunda-light-nav-trigger { display: flex !important; }
}
