/**
 * Spicy Moments — design tokens (identité par défaut)
 * Chaleur, terre, sensualité naturelle — pas luxe criard.
 * Module-specific accents via html[data-module="…"].
 */
:root {
	/* Surfaces */
	--ms-bg-page: #f7f2ed;
	--ms-bg-surface: #fffbf7;
	--ms-bg-elevated: #ffffff;
	--ms-bg-muted: #f0e8e0;

	/* Texte */
	--ms-text-primary: #2c2420;
	--ms-text-secondary: #5c524c;
	--ms-text-muted: #6b5f58;
	--ms-text-on-accent: #fffbf7;

	/* Accents — feu doux / terre / sensualité */
	--ms-accent: #b85a4a;
	--ms-accent-hover: #9a4839;
	--ms-accent-soft: #f3ddd8;
	--ms-accent-secondary: #d4847a;
	--ms-sage: #5f735f;
	--ms-sage-soft: #e4ebe4;
	--ms-amber: #c4893a;
	--ms-amber-soft: #f5e8d4;

	/* Bordures & ombres */
	--ms-border: #d9cfc6;
	--ms-border-strong: #b8a99e;
	--ms-shadow-sm: 0 1px 3px rgba(44, 36, 32, 0.08);
	--ms-shadow-md: 0 4px 14px rgba(44, 36, 32, 0.1);

	/* États (toujours compléter par du texte, pas couleur seule) */
	--ms-success: #4a6b4a;
	--ms-success-bg: #e8f0e8;
	--ms-warning: #8a5a20;
	--ms-warning-bg: #f5e8d4;
	--ms-error: #9a3838;
	--ms-error-bg: #f5e4e4;
	--ms-info-bg: #ebe8f0;

	/* Typo & forme */
	--ms-font-body: "Luciole", "Segoe UI", system-ui, sans-serif;
	--ms-font-heading: "Luciole", "Segoe UI", system-ui, sans-serif;
	--ms-font-size-base: 1rem;
	--ms-line-height: 1.55;
	--ms-radius-sm: 6px;
	--ms-radius-md: 10px;
	--ms-radius-lg: 14px;
	--ms-space-xs: 0.35rem;
	--ms-space-sm: 0.65rem;
	--ms-space-md: 1rem;
	--ms-space-lg: 1.5rem;
	--ms-space-xl: 2.5rem;
	--ms-content-max: 72rem;
	--ms-focus-ring: 0 0 0 3px var(--ms-accent-soft), 0 0 0 5px var(--ms-accent);

	/* Liens */
	--ms-link: #9a4839;
	--ms-link-hover: #7a3629;
}

/* Accents par module (nuances légères, même famille) */
html[data-module="accommodation"] {
	--ms-accent: #a86b52;
	--ms-accent-soft: #f0e0d6;
}

html[data-module="ride"] {
	--ms-accent: #c4893a;
	--ms-accent-soft: #f5e8d4;
}

html[data-module="activity"] {
	--ms-accent: #c4695a;
	--ms-accent-soft: #f3ddd8;
}

html[data-module="group"] {
	--ms-accent: #5f735f;
	--ms-accent-soft: #e4ebe4;
	--ms-link: #4a5f4a;
	--ms-link-hover: #3a4a3a;
}

html[data-module="profile"],
html[data-module="user"] {
	--ms-accent: #b85a4a;
}

html[data-module="conversation"] {
	--ms-accent: #8a6b5c;
	--ms-accent-soft: #ede6e2;
}

html[data-module="admin"],
html[data-module="moderation"] {
	--ms-accent: #5c524c;
	--ms-accent-soft: #e8e4e0;
}

/* Contraste système renforcé */
@media (prefers-contrast: more) {
	:root {
		--ms-text-primary: #1a1410;
		--ms-text-muted: #3d3530;
		--ms-border: #6b5f58;
		--ms-border-strong: #2c2420;
		--ms-shadow-sm: none;
		--ms-shadow-md: none;
	}
}

/* Thème sombre volontaire du système (base lisible ; réglages site plus tard) */
@media (prefers-color-scheme: dark) {
	:root {
		--ms-bg-page: #1f1a18;
		--ms-bg-surface: #2a2420;
		--ms-bg-elevated: #322c28;
		--ms-bg-muted: #3a332e;
		--ms-text-primary: #f5ede6;
		--ms-text-secondary: #d4ccc4;
		--ms-text-muted: #b8aea6;
		--ms-text-on-accent: #fffbf7;
		--ms-border: #5c524c;
		--ms-border-strong: #8a7a70;
		--ms-accent-soft: #4a3530;
		--ms-sage-soft: #2a352a;
		--ms-warning-bg: #3d3020;
		--ms-success-bg: #253025;
		--ms-error-bg: #3d2525;
		--ms-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.35);
		--ms-shadow-md: 0 4px 14px rgba(0, 0, 0, 0.4);
	}
}

/* Windows / modes à couleurs forcées */
@media (forced-colors: active) {
	:root {
		--ms-shadow-sm: none;
		--ms-shadow-md: none;
	}
}
