/* Arctic Casino — blueprint.css
   TYPO-07 airy · SPACE-04 · CONT-02 (site 1380) · GEO-09 glass · MOTION-01
   Component roots: etiquette/crypte/bandeau/module/console/balise/socle/vignette/
   buffet/blason/comptoir/piedestal/imposte/manchette/carnet/voussure/arcade */

/* ============================= tokens ============================= */
:root {
	--theme-accent-main: #3fefaa;
	--theme-accent-color: #fe8c38;
	--theme-accent-active: #ff6e1c;
	--theme-canvas: #00225b;
	--theme-bg-elevated: #073a88;
	--theme-gradient-start: #ffdcc1;
	--theme-gradient-mid: #ffb378;
	--theme-foreground: #ffffff;
	--theme-text-muted: #c3ccdb;
	--theme-color-on-accent: #041226;
	--theme-warning-bg: #dc2626;
	--theme-color-hairline: rgba(255, 255, 255, 0.10);

	--theme-font-heading: "Golos Text", "Segoe UI", system-ui, sans-serif;
	--theme-font-base: "Mulish", "Segoe UI", system-ui, sans-serif;

	--theme-size-h1: 48px; --theme-text-h2: 36px; --theme-fs-h3: 26px; --theme-type-h4: 21px;
	--theme-size-h5: 18px; --theme-text-h6: 16px; --theme-type-body: 19px; --theme-fs-small: 16px; --theme-text-xs: 14px;
	--theme-lh-tight: 1.2; --theme-leading-normal: 1.7; --theme-leading-loose: 2.0;
	--theme-ls-tight: -0.01em; --theme-ls-normal: 0; --theme-ls-wide: 0.02em;
	--theme-fw-normal: 400; --theme-weight-medium: 500; --theme-weight-bold: 600;

	--theme-gutter-2xs: 6px; --theme-spacing-xs: 14px; --theme-gutter-sm: 20px; --theme-spacing-md: 32px;
	--theme-spacing-lg: 48px; --theme-gutter-xl: 72px; --theme-space-2xl: 112px; --theme-space-3xl: 160px;

	--theme-content-width: 1380px;
	--theme-readable-width: 720px;
	--theme-edge-mobile: 16px;
	--theme-container-padding-tablet: 24px;
	--theme-edge-desktop: 40px;
	--theme-sec-y: 48px;

	--theme-corner-xs: 2px; --theme-radius-sm: 8px; --theme-radius: 14px; --theme-corner-lg: 22px;
	--theme-pill: 9999px; --theme-radius-circle: 50%;
	--theme-depth-sm: 0 4px 12px rgba(0,0,0,0.15), 0 0 0 1px rgba(255,255,255,0.08) inset;
	--theme-shade-md: 0 8px 24px rgba(0,0,0,0.20), 0 0 0 1px rgba(255,255,255,0.10) inset;
	--theme-shade-lg: 0 16px 48px rgba(0,0,0,0.30), 0 0 0 1px rgba(255,255,255,0.12) inset;
	--theme-transition-fast: 150ms; --theme-duration-base: 240ms;
}

/* ============================= reset / base ============================= */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: clip; }
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	background: var(--theme-canvas);
	color: var(--theme-foreground);
	font-family: var(--theme-font-base);
	font-size: var(--theme-type-body);
	font-weight: var(--theme-fw-normal);
	line-height: var(--theme-leading-normal);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--theme-font-heading); line-height: var(--theme-lh-tight); margin: 0; }
ul, ol { margin: 0; }
.main { display: block; }

.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;
}
.skip-link {
	position: fixed; left: var(--theme-spacing-md); top: var(--theme-spacing-md); z-index: 200;
	background: var(--theme-accent-main); color: var(--theme-color-on-accent);
	padding: var(--theme-spacing-xs) var(--theme-spacing-md); border-radius: var(--theme-radius-sm);
	font-weight: var(--theme-weight-bold); text-decoration: none;
}
.skip-link:not(:focus) { top: -200px !important; }
:focus-visible { outline: 2px solid var(--theme-accent-main); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
	* { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* shared full-width section inner (single site width) */
.bandeau-inner, .module-inner, .console-inner, .balise-inner, .socle-inner,
.vignette-inner, .buffet-inner, .blason-inner, .comptoir-inner, .piedestal-inner,
.imposte-inner, .voussure-inner, .arcade-inner, .pagemedia-inner, .crypte-inner {
	width: 100%;
	max-width: calc(var(--theme-content-width) + 2 * var(--theme-edge-desktop));
	margin-inline: auto;
	padding-inline: var(--theme-edge-desktop);
}

/* ============================= RG banner ============================= */
.rg-banner {
	margin: 0; background: var(--theme-warning-bg); color: var(--theme-foreground);
	text-align: center; font-size: var(--theme-text-xs); font-weight: var(--theme-weight-medium);
	padding: 8px var(--theme-spacing-md); letter-spacing: var(--theme-ls-wide);
}

/* ============================= header HEAD-02 ============================= */
.etiquette { background: var(--theme-canvas); }
.etiquette-bar {
	position: relative;
	max-width: 1440px; margin-inline: auto;
	min-height: 96px;
	display: flex; align-items: center; justify-content: space-between;
	gap: var(--theme-spacing-md); padding-inline: var(--theme-spacing-md);
}
.etiquette-nav { display: flex; }
.etiquette-nav--left { justify-content: flex-start; }
.etiquette-nav--right { justify-content: flex-end; }
.etiquette-nav-list { list-style: none; display: flex; align-items: center; gap: var(--theme-spacing-md); padding: 0; margin: 0; }
.etiquette-nav-item { display: inline-flex; }
.etiquette-nav-link {
	font-family: var(--theme-font-base); font-weight: var(--theme-weight-medium); font-size: var(--theme-fs-small);
	text-transform: uppercase; letter-spacing: var(--theme-ls-wide);
	color: var(--theme-foreground); text-decoration: none; white-space: nowrap;
	transition: color var(--theme-transition-fast);
}
.etiquette-nav-link:hover, .etiquette-nav-link[aria-current="page"] { color: var(--theme-accent-color); }
.etiquette-logo { flex-shrink: 0; display: inline-flex; text-decoration: none; }
.etiquette-logo-pill {
	display: inline-flex; align-items: center; background: #ffffff;
	padding: 6px 14px; border-radius: var(--theme-radius);
}
.etiquette-logo-img { height: 40px; width: auto; display: block; flex-shrink: 0; }
.etiquette-auth-btn {
	display: inline-flex; align-items: center; white-space: nowrap; flex-shrink: 0;
	background: var(--theme-accent-color); color: var(--theme-color-on-accent);
	font-family: var(--theme-font-heading); font-weight: var(--theme-weight-bold); font-size: var(--theme-fs-small);
	padding: 10px var(--theme-spacing-md); border-radius: var(--theme-pill); text-decoration: none;
	transition: background var(--theme-transition-fast), color var(--theme-transition-fast);
}
.etiquette-auth-btn:hover { background: var(--theme-accent-active); color: var(--theme-color-on-accent); }
.etiquette-toggle {
	display: none; margin-left: auto; flex-direction: column; gap: 5px;
	background: none; border: 0; cursor: pointer; padding: 8px;
}
.etiquette-toggle-bar { display: block; width: 26px; height: 3px; background: var(--theme-foreground); border-radius: 2px; }
.etiquette-drawer { display: none; }
.etiquette-drawer-list { list-style: none; margin: 0; padding: 0; }
.etiquette-drawer-item { display: block; }
.etiquette-drawer-link {
	display: block; padding: var(--theme-gutter-sm) var(--theme-spacing-md); color: var(--theme-foreground);
	text-decoration: none; font-family: var(--theme-font-heading); font-size: var(--theme-size-h5);
	border-bottom: 1px solid var(--theme-color-hairline);
}
.etiquette-drawer-link:hover, .etiquette-drawer-link[aria-current="page"] { color: var(--theme-accent-color); }
.etiquette-backdrop { display: none; }

/* ============================= hero HERO-11 ============================= */
.bandeau { padding-block: var(--theme-sec-y); }
.bandeau-inner {
	display: grid; grid-template-columns: 65% 35%; gap: var(--theme-gutter-xl);
	align-items: center; min-height: 480px;
}
.bandeau-content { text-align: left; }
.bandeau-eyebrow {
	margin: 0 0 var(--theme-gutter-sm); color: var(--theme-accent-color);
	font-size: var(--theme-fs-small); text-transform: uppercase; letter-spacing: var(--theme-ls-wide);
	font-weight: var(--theme-weight-bold);
}
.bandeau-title { font-size: var(--theme-size-h1); color: var(--theme-foreground); margin: 0 0 var(--theme-spacing-md); }
.bandeau-subtitle {
	font-size: var(--theme-size-h5); color: var(--theme-text-muted); line-height: var(--theme-leading-normal);
	max-width: 640px; margin: 0 0 var(--theme-spacing-lg);
}
.bandeau-cta {
	display: inline-flex; align-items: center; background: var(--theme-accent-color);
	color: var(--theme-color-on-accent); font-family: var(--theme-font-heading); font-weight: var(--theme-weight-bold);
	font-size: var(--theme-text-h6); padding: var(--theme-gutter-sm) var(--theme-spacing-lg); border-radius: var(--theme-pill);
	text-decoration: none; transition: background var(--theme-transition-fast), color var(--theme-transition-fast);
}
.bandeau-cta:hover { background: var(--theme-accent-active); color: var(--theme-color-on-accent); }
.bandeau-figure { margin: 0; aspect-ratio: 1 / 1; width: 100%; }
.bandeau-img {
	width: 100%; height: 100%; object-fit: cover; border-radius: var(--theme-corner-lg);
	box-shadow: var(--theme-shade-lg);
}

/* ============================= breadcrumbs BREAD-03 ============================= */
.arcade { padding-block: var(--theme-spacing-md); }
.arcade-list { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: var(--theme-gutter-2xs); padding: 0; margin: 0; }
.arcade-item { display: inline-flex; font-size: var(--theme-fs-small); }
.arcade-link { color: var(--theme-text-muted); text-decoration: none; }
.arcade-link:hover { color: var(--theme-accent-color); }
.arcade-current { color: var(--theme-foreground); }
.arcade-sep { color: var(--theme-accent-color); margin-inline: var(--theme-spacing-xs); }

/* ============================= page-header PHEAD-06 ============================= */
.module { padding-block: var(--theme-sec-y); }
.module-title { font-size: var(--theme-size-h1); color: var(--theme-foreground); margin: 0; }
.module-rule { display: block; width: 40px; height: 1px; background: rgba(255,255,255,0.2); margin: var(--theme-spacing-md) 0; }
.module-desc {
	font-family: var(--theme-font-base); font-style: italic; font-size: var(--theme-size-h5);
	color: var(--theme-text-muted); max-width: 640px; margin: 0;
}
.module-meta { font-size: var(--theme-text-xs); color: var(--theme-text-muted); }

/* ============================= page media figure ============================= */
.pagemedia { padding-block: var(--theme-sec-y); }
.pagemedia-figure { margin: 0; }
.pagemedia-img { width: 100%; max-height: 520px; object-fit: cover; border-radius: var(--theme-corner-lg); box-shadow: var(--theme-shade-md); }
.pagemedia-cap { font-size: var(--theme-text-xs); color: var(--theme-text-muted); margin-top: var(--theme-gutter-sm); }

/* ============================= prose PROSE-08 ============================= */
.buffet { padding-block: var(--theme-sec-y); }
.buffet-section { margin-bottom: var(--theme-spacing-lg); }
.buffet-h2 { font-size: var(--theme-text-h2); color: var(--theme-foreground); padding-left: 0; margin: 0 0 var(--theme-spacing-md); }
.buffet-p, .buffet-list {
	padding-left: var(--theme-space-2xl); font-size: var(--theme-type-body); line-height: var(--theme-leading-loose);
	max-width: 720px; color: var(--theme-foreground); margin: 0 0 var(--theme-spacing-md);
}
.buffet-list { list-style: disc; }
.buffet-li { margin-bottom: var(--theme-spacing-xs); }
.buffet-link { color: var(--theme-accent-color); text-decoration: underline; text-underline-offset: 3px; }
.buffet-link:hover { text-decoration-thickness: 2px; }

/* ============================= items-grid GRID-08 ============================= */
.console { padding-block: var(--theme-sec-y); }
.console-head { margin-bottom: var(--theme-spacing-lg); }
.console-title { font-size: var(--theme-text-h2); color: var(--theme-foreground); margin: 0; }
.console-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--theme-spacing-lg); }
.console-card {
	background: var(--theme-bg-elevated); border-top: 4px solid var(--theme-accent-color);
	border-radius: 0 0 var(--theme-radius) var(--theme-radius); box-shadow: var(--theme-depth-sm);
	padding: var(--theme-spacing-lg);
}
.console-card-title { font-size: var(--theme-type-h4); color: var(--theme-foreground); margin: 0 0 var(--theme-gutter-sm); }
.console-card-text { font-size: var(--theme-type-body); color: var(--theme-text-muted); margin: 0; line-height: var(--theme-leading-normal); }

/* ============================= reviews REV-08 ============================= */
.socle { padding-block: var(--theme-sec-y); }
.socle-head { margin-bottom: var(--theme-spacing-lg); }
.socle-title { font-size: var(--theme-text-h2); color: var(--theme-foreground); margin: 0; }
.socle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--theme-spacing-lg); }
.socle-card { background: var(--theme-bg-elevated); border-radius: var(--theme-radius); box-shadow: var(--theme-depth-sm); padding: var(--theme-spacing-lg); }
.socle-card-head { display: flex; align-items: center; gap: var(--theme-gutter-sm); margin-bottom: var(--theme-gutter-sm); }
.socle-avatar {
	width: 48px; height: 48px; border-radius: var(--theme-radius-circle); flex-shrink: 0;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--theme-accent-color); color: var(--theme-color-on-accent);
	font-family: var(--theme-font-heading); font-weight: var(--theme-weight-bold); font-size: var(--theme-size-h5);
}
.socle-meta { display: flex; flex-direction: column; }
.socle-author { color: var(--theme-foreground); font-weight: var(--theme-weight-bold); }
.socle-date { color: var(--theme-text-muted); font-size: var(--theme-text-xs); }
.socle-stars { color: var(--theme-accent-color); margin-bottom: var(--theme-gutter-sm); letter-spacing: 2px; }
.socle-star { color: var(--theme-accent-color); }
.socle-star--empty { color: rgba(255,255,255,0.55); }
.socle-text { font-size: var(--theme-type-body); color: var(--theme-text-muted); margin: 0; line-height: var(--theme-leading-normal); }

/* ============================= faq FAQ-03 ============================= */
.balise { padding-block: var(--theme-sec-y); }
.balise-head { margin-bottom: var(--theme-spacing-lg); }
.balise-title { font-size: var(--theme-text-h2); color: var(--theme-foreground); margin: 0; }
.balise-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--theme-spacing-md); }
.balise-card {
	background: var(--theme-canvas); border: 1px solid rgba(255,255,255,0.15);
	border-radius: var(--theme-radius); padding: var(--theme-spacing-lg);
}
.balise-q { font-size: var(--theme-size-h5); font-weight: var(--theme-weight-bold); color: var(--theme-foreground); margin: 0 0 var(--theme-spacing-md); }
.balise-qprefix { color: var(--theme-accent-color); font-family: var(--theme-font-heading); font-weight: var(--theme-weight-bold); margin-right: var(--theme-gutter-2xs); }
.balise-a { font-size: var(--theme-type-body); color: var(--theme-text-muted); margin: 0; line-height: var(--theme-leading-normal); }

/* ============================= cta-block CTA-04 ============================= */
.vignette { padding-block: var(--theme-sec-y); text-align: center; }
.vignette-title { font-size: var(--theme-type-h4); font-weight: var(--theme-weight-bold); color: var(--theme-foreground); margin: 0; }
.vignette-text { font-size: var(--theme-type-body); line-height: var(--theme-leading-loose); color: var(--theme-text-muted); margin-block: var(--theme-spacing-md); max-width: 580px; margin-inline: auto; }
.vignette-link {
	display: inline-block; font-size: var(--theme-text-h6); text-transform: uppercase; letter-spacing: var(--theme-ls-wide);
	color: var(--theme-accent-color); text-decoration: underline; text-underline-offset: 3px;
	transition: padding-left var(--theme-transition-fast);
}
.vignette-link:hover { color: var(--theme-accent-color); text-decoration-thickness: 2px; padding-left: 8px; }

/* ============================= data-table TABLE-02 ============================= */
.blason { padding-block: var(--theme-sec-y); }
.blason-table { width: 100%; border-collapse: collapse; }
.blason-thead { }
.blason-th {
	font-family: var(--theme-font-heading); font-weight: var(--theme-weight-bold); font-size: var(--theme-fs-small);
	text-transform: uppercase; letter-spacing: var(--theme-ls-wide); color: var(--theme-foreground);
	text-align: left; padding-block: var(--theme-spacing-md); padding-inline: var(--theme-spacing-md);
	border-bottom: 2px solid var(--theme-accent-color);
}
.blason-tbody { }
.blason-tr { }
.blason-td { padding: var(--theme-spacing-md); font-size: var(--theme-type-body); color: var(--theme-text-muted); border-bottom: 1px solid rgba(255,255,255,0.06); }
.blason-td:first-child { color: var(--theme-foreground); font-weight: var(--theme-weight-medium); }
.blason-tbody .blason-tr:last-child .blason-td { border-bottom: none; }

/* ============================= legal LEGAL-01 ============================= */
.comptoir { padding-block: var(--theme-sec-y); }
.comptoir-inner > * { max-width: var(--theme-readable-width); margin-inline: auto; }
.comptoir-intro { font-family: var(--theme-font-base); font-size: var(--theme-size-h5); line-height: var(--theme-leading-normal); color: var(--theme-foreground); margin: 0 0 var(--theme-spacing-lg); }
.comptoir-updated { font-size: var(--theme-text-xs); text-transform: uppercase; letter-spacing: var(--theme-ls-wide); color: var(--theme-text-muted); margin: 0 0 var(--theme-gutter-xl); }
.comptoir-section { border-block-start: 1px solid rgba(255,255,255,0.06); padding-top: var(--theme-spacing-lg); }
.comptoir-section:first-of-type { border-block-start: none; padding-top: 0; }
.comptoir-h3 { font-family: var(--theme-font-heading); font-weight: var(--theme-weight-bold); font-size: var(--theme-fs-h3); color: var(--theme-foreground); margin: var(--theme-gutter-xl) 0 var(--theme-spacing-md); }
.comptoir-p { font-size: var(--theme-type-body); line-height: var(--theme-leading-loose); color: var(--theme-text-muted); margin: 0 0 var(--theme-spacing-md); }
.comptoir-contacts { background: var(--theme-bg-elevated); padding: var(--theme-spacing-lg); border-radius: var(--theme-radius); margin-block-start: var(--theme-gutter-xl); }
.comptoir-contacts-title { font-family: var(--theme-font-heading); font-size: var(--theme-type-h4); color: var(--theme-foreground); margin: 0 0 var(--theme-spacing-md); }
.comptoir-contacts-list { list-style: none; padding: 0; margin: 0; }
.comptoir-contacts-item { color: var(--theme-text-muted); padding-block: var(--theme-gutter-2xs); }
.comptoir-disclaimer { background: #3a1220; border-left: 3px solid #dc2626; border-radius: var(--theme-corner-xs); padding: var(--theme-spacing-md); font-size: var(--theme-fs-small); color: var(--theme-foreground); margin-block-start: var(--theme-gutter-xl); }

/* ============================= contact-form FORM-06 ============================= */
.piedestal { padding-block: var(--theme-sec-y); }
.piedestal-inner > * { max-width: var(--theme-readable-width); margin-inline: auto; }
.piedestal-intro { font-size: var(--theme-size-h5); color: var(--theme-text-muted); margin: 0 0 var(--theme-spacing-lg); }
.piedestal-form { display: flex; flex-direction: column; gap: var(--theme-spacing-md); }
.piedestal-field { position: relative; }
.piedestal-input, .piedestal-textarea {
	width: 100%; background: var(--theme-bg-elevated); border: 1px solid var(--theme-color-hairline);
	border-radius: var(--theme-radius-sm); color: var(--theme-foreground); font-family: var(--theme-font-base);
	font-size: var(--theme-type-body); padding: var(--theme-spacing-lg) var(--theme-spacing-md) var(--theme-spacing-xs);
}
.piedestal-textarea { resize: vertical; }
.piedestal-input:focus, .piedestal-textarea:focus { outline: none; border-color: var(--theme-accent-color); }
.piedestal-label {
	position: absolute; top: 50%; left: var(--theme-spacing-md); transform: translateY(-50%);
	color: var(--theme-text-muted); pointer-events: none;
	transition: top var(--theme-transition-fast), font-size var(--theme-transition-fast), color var(--theme-transition-fast);
}
.piedestal-textarea + .piedestal-label { top: var(--theme-spacing-lg); }
.piedestal-input:focus + .piedestal-label,
.piedestal-input:not(:placeholder-shown) + .piedestal-label,
.piedestal-textarea:focus + .piedestal-label,
.piedestal-textarea:not(:placeholder-shown) + .piedestal-label {
	top: var(--theme-spacing-xs); transform: translateY(0); font-size: var(--theme-text-xs); color: var(--theme-accent-color);
}
.piedestal-submit {
	align-self: flex-start; background: var(--theme-accent-color); color: var(--theme-color-on-accent);
	font-family: var(--theme-font-heading); font-weight: var(--theme-weight-bold); font-size: var(--theme-text-h6);
	border: 0; border-radius: var(--theme-pill); padding: var(--theme-gutter-sm) var(--theme-gutter-xl); cursor: pointer;
	transition: background var(--theme-transition-fast), color var(--theme-transition-fast);
}
.piedestal-submit:hover { background: var(--theme-accent-active); color: var(--theme-color-on-accent); }
.piedestal-success { background: var(--theme-bg-elevated); border-left: 4px solid var(--theme-accent-main); border-radius: var(--theme-radius-sm); padding: var(--theme-spacing-md); color: var(--theme-foreground); margin-top: var(--theme-spacing-md); }

/* ============================= author-card AUTH-06 ============================= */
.imposte { padding-block: var(--theme-sec-y); }
.imposte-inner {
	background: var(--theme-canvas);
	background-image: linear-gradient(135deg, rgba(63,239,170,0.14), var(--theme-canvas) 60%);
	border-radius: var(--theme-corner-lg); padding: var(--theme-space-2xl) var(--theme-gutter-xl);
	display: grid; grid-template-columns: 280px 1fr; gap: var(--theme-space-2xl); align-items: center;
}
.imposte-body { display: block; }
.imposte-portrait-wrap { width: 280px; }
.imposte-portrait { width: 280px; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--theme-corner-lg); box-shadow: var(--theme-shade-lg); }
.imposte-eyebrow { color: var(--theme-accent-color); font-size: var(--theme-fs-small); text-transform: uppercase; letter-spacing: var(--theme-ls-wide); margin: 0 0 var(--theme-gutter-sm); }
.imposte-name { font-size: clamp(40px, 6vw, 64px); color: var(--theme-foreground); margin: 0 0 var(--theme-spacing-md); }
.imposte-bio { font-size: var(--theme-size-h5); line-height: var(--theme-leading-normal); color: var(--theme-foreground); max-width: 540px; margin: 0 0 var(--theme-spacing-md); }
.imposte-expertise { list-style: none; display: flex; flex-wrap: wrap; gap: var(--theme-gutter-sm); padding: 0; margin: 0; }
.imposte-expertise-item { background: var(--theme-bg-elevated); color: var(--theme-foreground); border-radius: var(--theme-pill); padding: var(--theme-gutter-2xs) var(--theme-spacing-md); font-size: var(--theme-fs-small); }
.imposte-articles { margin-top: var(--theme-gutter-xl); }
.imposte-articles-heading { font-size: var(--theme-fs-h3); color: var(--theme-foreground); margin: 0 0 var(--theme-spacing-md); }
.imposte-articles-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--theme-gutter-sm); }
.imposte-articles-item { display: block; }
.imposte-articles-link { color: var(--theme-accent-color); text-decoration: underline; text-underline-offset: 3px; font-size: var(--theme-size-h5); }
.imposte-articles-link:hover { color: var(--theme-accent-color); text-decoration-thickness: 2px; }

/* ============================= byline BYLINE-03 ============================= */
.manchette { padding-block: var(--theme-sec-y); }
.manchette-inner { display: flex; align-items: center; gap: var(--theme-gutter-sm); border-top: 1px solid rgba(255,255,255,0.12); padding-top: var(--theme-spacing-md); max-width: calc(var(--theme-content-width) + 2 * var(--theme-edge-desktop)); margin-inline: auto; padding-inline: var(--theme-edge-desktop); }
.manchette-portrait { width: 28px; height: 28px; border-radius: var(--theme-radius-circle); object-fit: cover; flex-shrink: 0; }
.manchette-meta { font-size: var(--theme-fs-small); color: var(--theme-text-muted); }
.manchette-name { color: var(--theme-accent-color); text-decoration: none; }
.manchette-name:hover { text-decoration: underline; }
.manchette-role { color: var(--theme-text-muted); }
.manchette-time { color: var(--theme-text-muted); }

/* ============================= cookie COOK-07 ============================= */
.carnet { position: fixed; right: var(--theme-spacing-md); bottom: var(--theme-spacing-md); z-index: 90; width: 320px; max-width: 320px; }
.carnet-inner { background: var(--theme-canvas); border-left: 4px solid var(--theme-accent-color); border-radius: var(--theme-radius-sm); box-shadow: var(--theme-shade-md); padding: var(--theme-spacing-md); }
.carnet-msg { font-size: var(--theme-fs-small); color: var(--theme-foreground); margin: 0 0 var(--theme-gutter-sm); line-height: var(--theme-leading-normal); }
.carnet-btn { background: var(--theme-accent-color); color: var(--theme-color-on-accent); border: 0; border-radius: var(--theme-pill); font-family: var(--theme-font-heading); font-weight: var(--theme-weight-bold); font-size: var(--theme-fs-small); padding: var(--theme-gutter-2xs) var(--theme-spacing-md); cursor: pointer; transition: background var(--theme-transition-fast), color var(--theme-transition-fast); }
.carnet-btn:hover { background: var(--theme-accent-active); color: var(--theme-color-on-accent); }

/* ============================= error ERR-08 ============================= */
.voussure { padding-block: var(--theme-space-3xl); text-align: center; }
.voussure-title { font-size: var(--theme-size-h1); color: var(--theme-foreground); margin: 0 0 var(--theme-spacing-md); }
.voussure-text { font-size: var(--theme-size-h5); color: var(--theme-text-muted); max-width: 640px; margin: 0 auto var(--theme-spacing-lg); }
.voussure-btn { display: inline-flex; background: var(--theme-accent-color); color: var(--theme-color-on-accent); font-family: var(--theme-font-heading); font-weight: var(--theme-weight-bold); padding: var(--theme-gutter-sm) var(--theme-spacing-lg); border-radius: var(--theme-pill); text-decoration: none; transition: background var(--theme-transition-fast), color var(--theme-transition-fast); }
.voussure-btn:hover { background: var(--theme-accent-active); color: var(--theme-color-on-accent); }
.voussure-suggestions { background: var(--theme-bg-elevated); border-radius: var(--theme-radius); padding: var(--theme-gutter-xl); margin-top: var(--theme-space-2xl); }
.voussure-suggestions-heading { font-size: var(--theme-type-h4); color: var(--theme-foreground); margin: 0 0 var(--theme-spacing-md); }
.voussure-suggestions-list { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: var(--theme-spacing-md); padding: 0; margin: 0; }
.voussure-suggestions-item { display: inline-flex; }
.voussure-suggestions-link { color: var(--theme-accent-color); font-size: var(--theme-type-body); text-decoration: none; }
.voussure-suggestions-link:hover { text-decoration: underline; }

/* ============================= footer FOOT-08 ============================= */
.crypte { background: var(--theme-canvas); padding-block: var(--theme-gutter-xl); }
.crypte-masthead { border-top: 4px double var(--theme-foreground); border-bottom: 4px double var(--theme-foreground); padding-block: var(--theme-spacing-lg); display: flex; flex-direction: column; align-items: center; gap: var(--theme-gutter-sm); text-align: center; }
.crypte-logo { display: inline-flex; }
.crypte-logo-pill { display: inline-flex; align-items: center; background: #ffffff; padding: 6px 14px; border-radius: var(--theme-radius); }
.crypte-logo-img { height: 40px; width: auto; display: block; }
.crypte-issue { font-family: var(--theme-font-heading); font-size: var(--theme-fs-small); color: var(--theme-text-muted); letter-spacing: var(--theme-ls-wide); margin: 0; text-transform: uppercase; }
.crypte-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--theme-spacing-lg); padding-block: var(--theme-gutter-xl); }
.crypte-col { display: block; }
.crypte-col-title { font-family: var(--theme-font-heading); font-weight: var(--theme-weight-bold); font-size: var(--theme-size-h5); color: var(--theme-foreground); margin: 0 0 var(--theme-spacing-md); }
.crypte-col-list { list-style: none; padding: 0; margin: 0; }
.crypte-col-item { display: block; padding-block: var(--theme-gutter-2xs); }
.crypte-col-link { color: var(--theme-text-muted); text-decoration: none; font-size: var(--theme-fs-small); }
.crypte-col-link:hover { color: var(--theme-accent-color); }
.crypte-bottom { text-align: center; border-top: 1px solid var(--theme-color-hairline); padding-top: var(--theme-spacing-lg); }
.crypte-copy { font-size: var(--theme-text-xs); color: var(--theme-text-muted); }

/* ============================= mobile ============================= */
@media (max-width: 1099px) {
	.etiquette-nav, .etiquette-auth-btn { display: none; }
	.etiquette-toggle { display: flex; }
	.etiquette-logo { margin-inline: auto; }
	.etiquette-bar { min-height: 64px; justify-content: flex-start; }
	.etiquette-drawer {
		position: fixed; top: 0; left: 0; bottom: 0; width: 78%; max-width: 320px; z-index: 120;
		background: var(--theme-canvas); box-shadow: var(--theme-shade-lg); padding: var(--theme-gutter-xl) 0 0;
		transform: translateX(-100%); transition: transform var(--theme-duration-base);
	}
	.etiquette-drawer.is-open { display: block; transform: translateX(0); }
	.etiquette-backdrop.is-open { display: block; position: fixed; inset: 0; z-index: 110; background: rgba(0,0,0,0.55); }
	.bandeau-inner { grid-template-columns: 1fr; gap: var(--theme-spacing-lg); min-height: 0; }
	.bandeau-figure { order: 2; aspect-ratio: auto; height: 240px; }
	.bandeau-img { height: 240px; }
	.console-grid, .socle-grid { grid-template-columns: 1fr; }
	.balise-grid { grid-template-columns: 1fr; }
	.crypte-grid { grid-template-columns: 1fr; gap: var(--theme-spacing-md); }
	.imposte-inner { grid-template-columns: 1fr; gap: var(--theme-spacing-lg); padding: var(--theme-gutter-xl) var(--theme-spacing-md); }
	.imposte-portrait-wrap, .imposte-portrait { width: 100%; max-width: 280px; }
	.buffet-p, .buffet-list { padding-left: var(--theme-spacing-md); }
}

@media (max-width: 720px) {
	:root {
		--theme-size-h1: 32px; --theme-text-h2: 26px; --theme-fs-h3: 22px; --theme-type-h4: 19px;
		--theme-size-h5: 17px; --theme-text-h6: 15px; --theme-type-body: 18px; --theme-fs-small: 15px; --theme-text-xs: 13px;
		--theme-edge-desktop: 16px;
	}
	.carnet { left: var(--theme-spacing-md); right: var(--theme-spacing-md); width: auto; max-width: none; }
	.carnet-btn { width: 100%; min-height: 40px; }
	.voussure { padding-block: var(--theme-space-2xl); }
}

