:root {
	--color-primary: #180a0a;
	--color-accent: #fe631a;
	--color-bg: #120807;
	--color-bg-elevated: #1f100d;
	--color-accent-pressed: #e94e00;
	--color-gradient-light: #c80f35;
	--color-gradient-mid: #fbdd00;
	--color-text: #ffffff;
	--color-text-muted: #bdbdbd;
	--color-rg-banner: #dc2626;

	--font-display: 'Inter', system-ui, sans-serif;
	--font-body: 'Montserrat', system-ui, sans-serif;

	--fs-h1: 60px; --fs-h2: 34px; --fs-h3: 24px; --fs-h4: 19px;
	--fs-h5: 16px; --fs-h6: 14px; --fs-body: 16px; --fs-small: 13px; --fs-micro: 10px;
	--lh-tight: 1.1; --lh-normal: 1.5; --lh-loose: 1.65;
	--ls-tight: -0.02em; --ls-normal: 0; --ls-wide: 0.06em;
	--fw-regular: 400; --fw-medium: 600; --fw-bold: 800;

	--space-2xs: 5px; --space-xs: 10px; --space-sm: 15px; --space-md: 25px;
	--space-lg: 40px; --space-xl: 60px; --space-2xl: 90px; --space-3xl: 140px;

	--container-site: 1220px;
	--container-readable: 720px;
	--container-padding-desktop: 24px;
	--container-padding-tablet: 32px;
	--container-padding-mobile: 16px;

	--radius-xs: 2px; --radius-sm: 6px; --radius-md: 8px; --radius-lg: 14px;
	--radius-pill: 9999px; --radius-circle: 50%;
	--shadow-sm: 0 2px 4px rgba(0,0,0,0.28);
	--shadow-md: 0 4px 10px rgba(0,0,0,0.34);
	--shadow-lg: 0 8px 20px rgba(0,0,0,0.42);
	--border-thin: 1px;

	--dur-fast: 250ms; --dur-base: 400ms; --dur-slow: 700ms;
	--ease-out: cubic-bezier(0.25,0.46,0.45,0.94);
	--ease-in-out: cubic-bezier(0.645,0.045,0.355,1);

	--header-height-desktop: 96px;
	--header-height-mobile: 64px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: clip; }
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	background: var(--color-bg);
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: var(--fs-body);
	line-height: var(--lh-normal);
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.skip-link {
	position: absolute; left: 12px; z-index: 200;
	background: var(--color-accent); color: var(--color-bg);
	padding: 10px 16px; border-radius: var(--radius-md); font-weight: var(--fw-bold);
}
.skip-link:not(:focus) { top: -200px !important; }
.skip-link:focus { top: 12px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

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

h1, h2, h3, h4 { margin: 0 0 var(--space-md); }
p { margin: 0 0 var(--space-md); }

.rg-banner {
	margin: 0; text-align: center;
	background: #1c0a0a; color: #ffd9c9;
	font-size: var(--fs-small); letter-spacing: var(--ls-wide);
	padding: 7px 16px; border-bottom: 1px solid rgba(254,99,26,0.28);
	min-height: 28px; display: flex; align-items: center; justify-content: center;
}

.site-main { display: block; }
.site-main > section { padding-block: 44px; }

/* Unified section inner width (anti-footprint: single container) */
.autel-grand-inner, .ecrin-leger-inner, .garde-corps-sombre-inner,
.reliquaire-calme-inner, .autel-haut-inner, .vigile-dense-inner,
.oriflamme-vif-inner, .fondement-moderne-inner, .chapelle-calme-inner,
.sentinelle-leger-inner, .stalle-profond-inner, .loggia-haute-grand-inner,
.veilleur-calme-inner {
	max-width: calc(var(--container-site) + 2 * var(--container-padding-desktop));
	margin-inline: auto;
	padding-inline: var(--container-padding-desktop);
	width: 100%;
}
/* Readable-width content sections (prose + legal) — intentional exception */
.lampadaire-raffine-inner, .guéridon-moderne-inner {
	
	margin-inline: auto;
	padding-inline: var(--container-padding-desktop);
	width: 100%;
}

/* ===================== HEADER (HEAD-02) ===================== */
.autel-grand {
	background: var(--color-primary);
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.autel-grand-inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	min-height: var(--header-height-desktop);
	gap: var(--space-md);
}
.autel-grand-nav--left { justify-self: start; }
.autel-grand-right { justify-self: end; display: flex; align-items: center; gap: var(--space-md); }
.autel-grand-nav-list {
	list-style: none; margin: 0; padding: 0;
	display: flex; flex-wrap: nowrap; align-items: center; gap: var(--space-sm);
}
.autel-grand-nav-item { position: relative; }
.autel-grand-nav-item--more { position: relative; }
.autel-grand-nav--right { justify-self: end; }
.autel-grand-link {
	text-decoration: none; color: var(--color-text);
	font-family: var(--font-display); font-size: var(--fs-small);
	font-weight: var(--fw-medium); letter-spacing: var(--ls-wide);
	text-transform: uppercase; white-space: nowrap;
	padding: 8px 4px; display: inline-flex; align-items: center;
	transition: color var(--dur-fast) var(--ease-out);
}
.autel-grand-link:hover { color: var(--color-accent); }
.autel-grand-link[aria-current='page'] { color: var(--color-accent); }
.autel-grand-logo { flex-shrink: 0; display: inline-flex; justify-self: center; }
.autel-grand-logo-img { height: 88px; width: auto; flex-shrink: 0; }

.autel-grand-more-toggle {
	background: transparent; border: 0; cursor: pointer; color: var(--color-text);
	display: inline-flex; align-items: center; gap: var(--space-2xs);
}
.autel-grand-more-chevron { transition: transform var(--dur-fast) var(--ease-out); }
.autel-grand-more-toggle[aria-expanded='true'] .autel-grand-more-chevron { transform: rotate(180deg); }
.autel-grand-more-menu {
	position: absolute; top: 100%; right: 0; margin: 6px 0 0; padding: var(--space-xs) 0;
	list-style: none; background: var(--color-bg-elevated);
	border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md);
	box-shadow: var(--shadow-md); min-width: 220px; z-index: 120;
}
.autel-grand-more-menu[hidden] { display: none; }
.autel-grand-more-link {
	display: block; padding: var(--space-xs) var(--space-md);
	color: var(--color-text); text-decoration: none; white-space: nowrap;
	font-size: var(--fs-small);
}
.autel-grand-more-link:hover, .autel-grand-more-link:focus {
	background: rgba(255,255,255,0.07); color: var(--color-accent);
}
.autel-grand-auth-btn {
	text-decoration: none; white-space: nowrap; flex-shrink: 0;
	font-family: var(--font-display); font-weight: var(--fw-bold);
	font-size: var(--fs-small); letter-spacing: var(--ls-wide); text-transform: uppercase;
	padding: 11px var(--space-lg); border-radius: var(--radius-md);
	transition: background var(--dur-fast) var(--ease-out);
}
.autel-grand-auth-btn--register {
	background: var(--color-accent); border: 1px solid var(--color-accent); color: var(--color-bg);
}
.autel-grand-auth-btn--register:hover { background: var(--color-accent-pressed); color: var(--color-bg); }
.autel-grand-toggle {
	display: none; margin-left: auto; background: transparent; border: 0; cursor: pointer;
	width: 44px; height: 44px; flex-direction: column; gap: 5px; justify-content: center; align-items: center;
}
.autel-grand-toggle span { display: block; width: 26px; height: 2px; background: var(--color-text); }

.autel-grand-drawer { display: none; }
.autel-grand-drawer-list { list-style: none; margin: 0; padding: var(--space-md); display: flex; flex-direction: column; gap: 4px; }
.autel-grand-drawer-link {
	display: block; padding: 14px var(--space-sm); text-decoration: none; color: var(--color-text);
	font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--ls-wide);
	font-size: var(--fs-h6);
}
.autel-grand-drawer-link[aria-current='page'] { color: var(--color-accent); }

@media (max-width: 1160px) {
	.autel-grand-inner { grid-template-columns: auto 1fr; }
	.autel-grand-nav { display: none; }
	.autel-grand-logo { justify-self: start; }
	.autel-grand-auth-btn--register { display: none; }
	.autel-grand-right { justify-self: end; }
	.autel-grand-toggle { display: flex; }
	.autel-grand-drawer {
		position: fixed; top: 0; left: 0; bottom: 0; width: 78%; max-width: 340px;
		background: var(--color-bg-elevated); z-index: 150; overflow-y: auto;
		transform: translateX(-100%); transition: transform var(--dur-base) var(--ease-in-out);
		box-shadow: var(--shadow-lg); display: block;
	}
	.autel-grand-drawer.is-open { transform: translateX(0); }
}

/* ===================== HERO (HERO-01) ===================== */
.ecrin-leger {
	position: relative; min-height: 640px; height: 82vh; max-height: 900px;
	display: flex; align-items: flex-end; overflow: hidden;
}
.ecrin-leger-image {
	position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
	animation: ecrin-kenburns 16s ease-in-out infinite alternate;
}
@keyframes ecrin-kenburns { from { transform: scale(1); } to { transform: scale(1.06); } }
.ecrin-leger-overlay {
	position: absolute; inset: 0; z-index: 1;
	background: linear-gradient(to top, rgba(10,4,4,0.92) 8%, rgba(10,4,4,0.55) 45%, rgba(10,4,4,0.25) 100%);
}
.ecrin-leger-inner { position: relative; z-index: 2; padding-block: var(--space-2xl); }
.ecrin-leger-content { max-width: 760px; }
.ecrin-leger-title {
	font-family: var(--font-display); font-weight: var(--fw-bold);
	font-size: var(--fs-h1); line-height: var(--lh-tight); letter-spacing: var(--ls-tight);
	text-transform: uppercase; margin-bottom: var(--space-md); color: #fff;
}
.ecrin-leger-subtitle {
	font-size: var(--fs-h4); color: rgba(255,255,255,0.9); max-width: 620px;
	line-height: var(--lh-normal); margin-bottom: var(--space-lg);
}
.ecrin-leger-cta {
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--color-accent); color: var(--color-bg); text-decoration: none;
	font-family: var(--font-display); font-weight: var(--fw-bold); text-transform: uppercase;
	letter-spacing: var(--ls-wide); min-height: 56px; padding: 0 var(--space-xl);
	border-radius: var(--radius-md); box-shadow: var(--shadow-md);
	transition: background var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.ecrin-leger-cta:hover { background: var(--color-accent-pressed); color: var(--color-bg); transform: translateY(-2px); }

/* ===================== PAGE-HEADER (PHEAD-04) ===================== */
.garde-corps-sombre { background: var(--color-bg); border-bottom: 1px solid rgba(255,255,255,0.06); }
.garde-corps-sombre-inner {
	display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--space-2xl); align-items: end;
}
.garde-corps-sombre-left { min-width: 0; }
.garde-corps-sombre-right { min-width: 0; }
.garde-corps-sombre-eyebrow {
	display: inline-block; color: var(--color-accent); text-transform: uppercase;
	letter-spacing: var(--ls-wide); font-size: var(--fs-small); font-weight: var(--fw-bold);
	margin-bottom: var(--space-sm);
}
.garde-corps-sombre-title {
	font-family: var(--font-display); font-weight: var(--fw-bold);
	font-size: var(--fs-h1); line-height: var(--lh-tight); letter-spacing: var(--ls-tight);
	text-transform: uppercase; margin: 0;
}
.garde-corps-sombre-meta {
	display: block; margin-top: var(--space-sm); color: var(--color-text-muted);
	font-size: var(--fs-small); letter-spacing: var(--ls-wide); text-transform: uppercase;
}
.garde-corps-sombre-description { color: var(--color-text-muted); font-size: var(--fs-h5); line-height: var(--lh-loose); margin: 0; }
@media (max-width: 860px) {
	.garde-corps-sombre-inner { grid-template-columns: 1fr; gap: var(--space-md); }
}

/* ===================== PROSE (PROSE-01) ===================== */
.lampadaire-raffine h2 {
	font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-h2);
	line-height: var(--lh-tight); margin: var(--space-xl) 0 var(--space-md); color: var(--color-text);
}
.lampadaire-raffine h2:first-child { margin-top: 0; }
.lampadaire-raffine p { font-size: var(--fs-body); line-height: var(--lh-loose); color: var(--color-text); }
.lampadaire-raffine strong { font-weight: var(--fw-bold); color: var(--color-text); }
.lampadaire-raffine a {
	color: var(--color-accent); text-decoration: underline; text-underline-offset: 3px;
	text-decoration-thickness: 1px;
}
.lampadaire-raffine a:hover { text-decoration-thickness: 2px; color: var(--color-accent); }
.lampadaire-raffine-figrow {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: var(--space-md); margin: 0;
}
.lampadaire-raffine-figure { margin: 0; }
.lampadaire-raffine-figure img { width: 100%; height: auto; border-radius: var(--radius-md); }

/* ===================== ITEMS GRID (GRID-02 numbered strip) ===================== */
.reliquaire-calme { display: block; }
.reliquaire-calme-text { min-width: 0; }
.reliquaire-calme-heading {
	font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-h2);
	margin-bottom: var(--space-lg);
}
.reliquaire-calme-list { list-style: none; margin: 0; padding: 0; }
.reliquaire-calme-item {
	display: grid; grid-template-columns: 96px 1fr; gap: var(--space-md); align-items: start;
	padding-block: var(--space-lg); border-top: 1px solid rgba(255,255,255,0.08);
}
.reliquaire-calme-item:first-child { border-top: 0; }
.reliquaire-calme-number {
	font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-h1);
	line-height: 1; color: var(--color-accent);
	transition: transform var(--dur-base) var(--ease-out);
}
.reliquaire-calme-item:hover .reliquaire-calme-number { transform: scale(1.1); }
.reliquaire-calme-item-title {
	font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-h3);
	margin-bottom: var(--space-xs);
}
.reliquaire-calme-item-text { color: var(--color-text-muted); line-height: var(--lh-loose); margin: 0; }
@media (max-width: 580px) {
	.reliquaire-calme-item { grid-template-columns: 64px 1fr; gap: var(--space-sm); }
	.reliquaire-calme-number { font-size: var(--fs-h2); }
}

/* ===================== REVIEWS (REV-01 cards + stars) ===================== */
.vigile-dense { display: block; }
.vigile-dense-heading { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-h2); margin-bottom: var(--space-lg); }
.vigile-dense-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.vigile-dense-item {
	background: var(--color-bg-elevated); border: 1px solid rgba(255,255,255,0.08);
	border-radius: var(--radius-lg); padding: var(--space-lg);
}
.vigile-dense-item-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: var(--space-xs); gap: var(--space-sm); }
.vigile-dense-author { font-weight: var(--fw-bold); color: var(--color-text); }
.vigile-dense-date { font-size: var(--fs-micro); color: var(--color-text-muted); letter-spacing: var(--ls-wide); text-transform: uppercase; }
.vigile-dense-rating { display: inline-flex; gap: 2px; margin-bottom: var(--space-sm); font-size: 18px; }
.vigile-dense-star { color: #8a8a8a; }
.vigile-dense-star.is-full { color: var(--color-accent); }
.vigile-dense-star.is-half { color: var(--color-accent); opacity: 0.7; }
.vigile-dense-star.is-empty { color: #8a8a8a; }
.vigile-dense-text { color: var(--color-text-muted); line-height: var(--lh-loose); margin: 0; }
@media (max-width: 860px) { .vigile-dense-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .vigile-dense-grid { grid-template-columns: 1fr; } }

/* ===================== FAQ (FAQ-09 magazine Q/A) ===================== */
.autel-haut { display: block; }
.autel-haut-heading { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-h2); margin-bottom: var(--space-lg); }
.autel-haut-list { display: flex; flex-direction: column; }
.autel-haut-item { padding-block: var(--space-lg); border-bottom: 1px solid rgba(255,255,255,0.07); }
.autel-haut-item:last-child { border-bottom: 0; }
.autel-haut-prefix { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-h5); color: var(--color-accent); margin-right: var(--space-xs); }
.autel-haut-question { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-h5); color: var(--color-text); margin-bottom: var(--space-sm); }
.autel-haut-answer { font-size: var(--fs-body); line-height: var(--lh-loose); color: var(--color-text-muted); margin: 0; }

/* ===================== CTA (CTA-10 pull-quote) ===================== */
.oriflamme-vif { background: var(--color-bg-elevated); }
.oriflamme-vif-inner { text-align: center; }
.oriflamme-vif-statement { margin: 0 auto var(--space-md); max-width: 900px; }
.oriflamme-vif-statement p {
	font-family: var(--font-display); font-style: italic; font-weight: var(--fw-bold);
	font-size: var(--fs-h2); line-height: var(--lh-tight); margin: 0; color: var(--color-text);
}
.oriflamme-vif-sub { max-width: 580px; margin: 0 auto var(--space-md); color: var(--color-text-muted); line-height: var(--lh-loose); }
.oriflamme-vif-link {
	color: var(--color-accent); text-decoration: underline; text-underline-offset: 4px;
	font-size: var(--fs-h5); text-transform: uppercase; letter-spacing: var(--ls-wide); font-weight: var(--fw-bold);
}
.oriflamme-vif-link:hover { color: var(--color-accent-pressed); text-decoration-thickness: 2px; }

/* ===================== TABLE (TABLE-02 borderless editorial) ===================== */
.fondement-moderne-heading { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-h2); margin-bottom: var(--space-lg); }
.fondement-moderne-scroll { overflow-x: auto; }
.fondement-moderne table { width: 100%; border-collapse: collapse; min-width: 480px; }
.fondement-moderne th {
	text-align: left; font-family: var(--font-display); font-weight: var(--fw-bold);
	font-size: var(--fs-small); text-transform: uppercase; letter-spacing: var(--ls-wide);
	color: var(--color-text); padding: var(--space-md) var(--space-sm); border-bottom: 2px solid var(--color-accent);
}
.fondement-moderne td { padding: var(--space-md) var(--space-sm); font-size: var(--fs-body); border-bottom: 1px solid rgba(255,255,255,0.07); color: var(--color-text-muted); }
.fondement-moderne td:first-child { color: var(--color-text); font-weight: var(--fw-medium); }
.fondement-moderne tr:last-child td { border-bottom: 0; }

/* ===================== LEGAL (LEGAL-08 minimal) ===================== */
.guéridon-moderne-intro { font-size: var(--fs-h5); line-height: var(--lh-loose); color: var(--color-text); }
.guéridon-moderne-updated { display: block; color: var(--color-text-muted); font-size: var(--fs-small); margin-bottom: var(--space-lg); }
.guéridon-moderne-section { margin-bottom: var(--space-lg); }
.guéridon-moderne h2 { font-family: var(--font-body); font-weight: var(--fw-bold); font-size: var(--fs-h3); margin-bottom: var(--space-sm); color: var(--color-text); }
.guéridon-moderne p { font-size: var(--fs-body); line-height: var(--lh-loose); color: var(--color-text-muted); }
.guéridon-moderne-contacts { padding-left: var(--space-md); color: var(--color-text-muted); line-height: var(--lh-loose); }
.guéridon-moderne-disclaimer { color: var(--color-text-muted); }

/* ===================== CONTACT FORM (FORM-04) ===================== */
.chapelle-calme { display: block; }
.chapelle-calme-form { display: flex; flex-wrap: wrap; gap: var(--space-md); align-items: flex-end; }
.chapelle-calme-field { display: flex; flex-direction: column; gap: var(--space-2xs); flex: 1 1 240px; }
.chapelle-calme-field--full { flex-basis: 100%; }
.chapelle-calme-field label { font-size: var(--fs-small); font-weight: var(--fw-medium); color: var(--color-text-muted); text-transform: uppercase; letter-spacing: var(--ls-wide); }
.chapelle-calme-field input, .chapelle-calme-field textarea {
	background: var(--color-bg-elevated); border: 1px solid rgba(255,255,255,0.14);
	border-radius: var(--radius-sm); color: var(--color-text); padding: 12px 14px;
	font-family: var(--font-body); font-size: var(--fs-body); width: 100%;
}
.chapelle-calme-field input:focus, .chapelle-calme-field textarea:focus { outline: 2px solid var(--color-accent); border-color: var(--color-accent); }
.chapelle-calme-submit {
	background: var(--color-accent); border: 1px solid var(--color-accent); color: var(--color-bg);
	font-family: var(--font-display); font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: var(--ls-wide);
	padding: 13px var(--space-xl); border-radius: var(--radius-md); cursor: pointer;
	transition: background var(--dur-fast) var(--ease-out);
}
.chapelle-calme-submit:hover { background: var(--color-accent-pressed); color: var(--color-bg); }
.chapelle-calme-success { margin-top: var(--space-md); color: var(--color-accent); font-weight: var(--fw-medium); }

/* ===================== AUTHOR CARD (AUTH-02) ===================== */
.sentinelle-leger { text-align: center; }
.sentinelle-leger-panel { max-width: 640px; margin-inline: auto; padding-inline: var(--container-padding-desktop); text-align: center; }
.sentinelle-leger-portrait { display: inline-block; margin-bottom: var(--space-lg); }
.sentinelle-leger-portrait img {
	width: 140px; height: 140px; border-radius: var(--radius-circle);
	object-fit: cover; object-position: center 20%; border: 3px solid var(--color-bg-elevated); box-sizing: content-box;
}
.sentinelle-leger-job-title { color: var(--color-accent); text-transform: uppercase; letter-spacing: var(--ls-wide); font-size: var(--fs-small); font-weight: var(--fw-bold); margin-bottom: var(--space-xs); }
.sentinelle-leger-name { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-h2); margin-bottom: var(--space-md); }
.sentinelle-leger-bio { line-height: var(--lh-loose); color: var(--color-text-muted); margin-bottom: var(--space-md); }
.sentinelle-leger-expertise { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: var(--space-xs); justify-content: center; }
.sentinelle-leger-tag { display: inline-block; padding: 6px 14px; background: var(--color-primary); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-pill); font-size: var(--fs-micro); text-transform: uppercase; letter-spacing: var(--ls-wide); color: var(--color-text); }

/* ===================== BYLINE (BYLINE-02 card) ===================== */
.hypostyle-pur { padding-block: 44px; }
.hypostyle-pur-card {
	max-width: calc(var(--container-site) + 2 * var(--container-padding-desktop));
	margin-inline: auto; margin-block: 0; padding: var(--space-lg);
	background: var(--color-bg-elevated); border: 1px solid rgba(255,255,255,0.08);
	border-radius: var(--radius-lg); display: flex; gap: var(--space-md); align-items: flex-start;
}
.hypostyle-pur-portrait { flex-shrink: 0; }
.hypostyle-pur-body { flex: 1; min-width: 0; }
.hypostyle-pur-portrait img {
	width: 64px; height: 64px; border-radius: var(--radius-circle);
	object-fit: cover; object-position: center 20%; border: 2px solid var(--color-bg-elevated); box-sizing: content-box;
}
.hypostyle-pur-label { display: block; font-size: var(--fs-micro); text-transform: uppercase; letter-spacing: var(--ls-wide); color: var(--color-text-muted); margin-bottom: 4px; }
.hypostyle-pur-name { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-h4); margin: 0 0 4px; }
.hypostyle-pur-name a { text-decoration: none; color: var(--color-text); }
.hypostyle-pur-name a:hover { text-decoration: underline; }
.hypostyle-pur-role { font-size: var(--fs-small); color: var(--color-text-muted); margin: 0 0 var(--space-xs); }
.hypostyle-pur-bio { font-size: var(--fs-body); line-height: var(--lh-normal); color: var(--color-text-muted); margin: 0 0 var(--space-xs); }
.hypostyle-pur-date { display: block; font-size: var(--fs-small); color: var(--color-text-muted); margin-bottom: var(--space-xs); }
.hypostyle-pur-link { color: var(--color-accent); text-decoration: none; font-size: var(--fs-small); text-transform: uppercase; letter-spacing: var(--ls-wide); font-weight: var(--fw-bold); }
.hypostyle-pur-link:hover { color: var(--color-accent-pressed); text-decoration: underline; }
@media (max-width: 580px) { .hypostyle-pur-card { flex-direction: column; } }

/* ===================== COOKIE (COOK-02 bottom strip) ===================== */
.veilleur-calme {
	position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
	background: var(--color-primary); border-top: 1px solid rgba(255,255,255,0.1);
	padding-block: var(--space-md);
}
.veilleur-calme[hidden] { display: none; }
.veilleur-calme-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); }
.veilleur-calme-message { font-size: var(--fs-small); color: var(--color-text-muted); margin: 0; flex: 1; }
.veilleur-calme-actions { display: flex; gap: var(--space-sm); flex-shrink: 0; }
.veilleur-calme-button { min-height: 40px; padding: 8px 20px; border-radius: var(--radius-md); cursor: pointer; font-family: var(--font-display); font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: var(--ls-wide); font-size: var(--fs-small); }
.veilleur-calme-button--decline { background: transparent; border: 1px solid rgba(255,255,255,0.25); color: var(--color-text); }
.veilleur-calme-button--decline:hover { background: rgba(255,255,255,0.08); }
.veilleur-calme-button--accept { background: var(--color-accent); border: 1px solid var(--color-accent); color: var(--color-bg); }
.veilleur-calme-button--accept:hover { background: var(--color-accent-pressed); }
@media (max-width: 720px) {
	.veilleur-calme, .veilleur-calme-inner { padding: 12px 14px !important; gap: 8px !important; font-size: 13px !important; line-height: 1.35 !important; }
	.veilleur-calme-inner { flex-direction: column; align-items: stretch; }
	.veilleur-calme-actions { justify-content: flex-end; }
	.veilleur-calme-button { padding: 8px 14px !important; font-size: 12px !important; min-height: 36px !important; }
}

/* ===================== ERROR (ERR-03 minimal) ===================== */
.stalle-profond { text-align: center; }
.stalle-profond-panel { max-width: 600px; margin-inline: auto; padding-inline: var(--container-padding-desktop); }
.stalle-profond h1 { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-h2); }
.stalle-profond-description { color: var(--color-text-muted); line-height: var(--lh-loose); margin-bottom: var(--space-lg); }
.stalle-profond-button {
	display: inline-flex; align-items: center; justify-content: center; min-height: 44px;
	background: var(--color-accent); color: var(--color-bg); text-decoration: none;
	padding: 0 var(--space-xl); border-radius: var(--radius-md);
	font-family: var(--font-display); font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: var(--ls-wide);
	transition: background var(--dur-fast) var(--ease-out);
}
.stalle-profond-button:hover { background: var(--color-accent-pressed); color: var(--color-bg); }

/* ===================== FOOTER (FOOT-08 masthead) ===================== */
.loggia-haute-grand { background: var(--color-bg); border-top: 1px solid rgba(255,255,255,0.08); padding-block: var(--space-xl); margin-top: var(--space-lg); }
.loggia-haute-grand-masthead { text-align: center; padding-block: var(--space-md); border-top: 3px solid rgba(255,255,255,0.85); border-bottom: 3px solid rgba(255,255,255,0.85); margin-bottom: var(--space-lg); }
.loggia-haute-grand-logo { display: inline-flex; }
.loggia-haute-grand-logo-img { height: 60px; width: auto; margin: 0 auto var(--space-xs); }
.loggia-haute-grand-issue { font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--ls-wide); font-size: var(--fs-small); color: var(--color-text-muted); margin: 0; }
.loggia-haute-grand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.loggia-haute-grand-heading { font-family: var(--font-display); font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: var(--ls-wide); font-size: var(--fs-h6); margin-bottom: var(--space-sm); color: var(--color-text); }
.loggia-haute-grand-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-xs); }
.loggia-haute-grand-col a { color: var(--color-text-muted); text-decoration: none; font-size: var(--fs-small); }
.loggia-haute-grand-col a:hover { color: var(--color-accent); }
.loggia-haute-grand-note { color: var(--color-text-muted); font-size: var(--fs-small); line-height: var(--lh-loose); margin: 0 0 var(--space-xs); }
.loggia-haute-grand-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.08); margin-top: var(--space-lg); padding-top: var(--space-md); color: var(--color-text-muted); }
@media (max-width: 860px) { .loggia-haute-grand-grid { grid-template-columns: 1fr; gap: var(--space-md); } }

/* Mobile typography scale */
@media (max-width: 860px) {
	:root {
		--fs-h1: 36px; --fs-h2: 26px; --fs-h3: 20px; --fs-h4: 17px;
		--fs-h5: 14px; --fs-h6: 12px; --fs-body: 15px; --fs-small: 12px; --fs-micro: 9px;
	}
	.autel-grand-logo-img { height: 64px; }
	.ecrin-leger { height: auto; min-height: 74vh; }
}

.lampadaire-raffine-figure img{max-width:100%;max-height:56vh;width:auto;height:auto;margin-inline:auto;display:block}
