
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
:root {
  /* ===== Backgrounds ===== */
  --bg-main: #FFFCF3;
  --bg-surface: #FFFFFF;
  --bg-subtle: #FFF4D4;
  --bg-muted: #F4E4B8;

  /* ===== Textes ===== */
  --text-primary: #171A21;
  --text-secondary: #444B56;
  --text-muted: #575E69;
  --text-inverse: #FFFFFF;

  /* ===== Couleur principale ===== */
  --primary: #E4A914;
  --primary-hover: #D29808;
  --primary-light: #F6D980;
  --primary-dark: #805500;

  /* ===== Accent ===== */
  --accent: #E4A914;
  --accent-light: #FFF0C2;

  /* ===== Bordures ===== */
  --border: #CFC8B7;
  --border-light: #DED7C6;
  --border-strong: #AAA18D;

  /* ===== États ===== */
  --success: #22A06B;
  --success-light: #E7F7EF;

  --warning: #D99A00;
  --warning-light: #FFF6DB;

  --error: #D64545;
  --error-light: #FDECEC;

  /* ===== Ombres ===== */
  --shadow-sm: 0 1px 2px rgba(20, 25, 35, 0.05);
  --shadow-md: 0 6px 20px rgba(20, 25, 35, 0.08);
  --shadow-lg: 0 16px 40px rgba(20, 25, 35, 0.10);

  /* ===== Rayons ===== */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  /* ===== Espacements ===== */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;

  /* ===== Typographie ===== */
  --font-sans: "Inter", sans-serif;
  --font-serif: "DM Serif Display", serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-md: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 3rem;
  --text-5xl: 4rem;
}
body{
    background-color: var(--bg-main);
    font-family: var(--font-sans);
    color: var(--text-primary);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body { line-height: 1.5; }
:focus-visible { outline: 3px solid var(--primary-dark); outline-offset: 3px; }
::selection { background: var(--primary-light); color: var(--text-primary); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
