:root {
  /* === COULEURS PRINCIPALES === */
  --color-white: #ffffff;
  --color-accent-light: #d7cba7;
  --color-accent-dark: #1D5248;
  
  /* === COULEURS DÉRIVÉES === */
  --color-text: #1a1a1a;
  --color-text-light: #666666;
  --color-background: var(--color-white);
  --color-border: #e0e0e0;
  
  /* === ESPACEMENTS === */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  
  /* === TYPOGRAPHIE === */
  --font-family-base: 'Montserrat', sans-serif;
  --font-size-base: 1.125rem;
  --font-size-sm: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.375rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2.5rem;
  --font-size-4xl: 3.5rem;
  
  --line-height-base: 1.6;
  --line-height-tight: 1.4;
  
  /* === POLICES TITRES === */
  --heading-font-font-family: "Montserrat";
  --heading-font-font-style: normal;
  --heading-font-font-weight: 400;
  --heading-font-text-transform: none;
  
  /* === BORDURES === */
  --border-radius: 0.5rem;
  --border-radius-lg: 1rem;
  
  /* === OMBRES === */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  
  /* === TRANSITIONS === */
  --transition-base: 0.2s ease-in-out;
}

/* === RESET CSS === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: var(--line-height-base);
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === TITRES === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font-font-family);
  font-style: var(--heading-font-font-style);
  font-weight: var(--heading-font-font-weight);
  text-transform: var(--heading-font-text-transform);
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-md);
  color: var(--color-text);
}

h1 { 
  font-size: 42px;
  font-weight: 700;
}
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }

/* === TEXTE === */
p {
  margin-bottom: var(--spacing-md);
  font-weight: 400;
}

a {
  color: var(--color-accent-dark);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-text);
  text-decoration: underline;
}

/* === CONTENEUR === */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}