@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,600;1,9..144,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* ============================================================
     COULEURS
     ============================================================ */

  /* Fonds */
  --color-bg: #FAF7F2;              /* Crème cassée, fond principal */
  --color-bg-elevated: #FFFFFF;     /* Cards et sections surélevées */
  --color-bg-dark: #1B2A3A;         /* Bleu nuit pour sections contraste */
  --color-bg-dark-elevated: #243749;

  /* Primaire — bleu nuit (signature) */
  --color-primary: #1B2A3A;
  --color-primary-light: #2D4257;
  --color-primary-dim: #11192280;

  /* Accent — terracotta chaud */
  --color-accent: #C2674A;
  --color-accent-bright: #D17F61;
  --color-accent-dim: #8B4A35;
  --color-accent-10: rgba(194, 103, 74, 0.10);
  --color-accent-20: rgba(194, 103, 74, 0.20);
  --color-accent-30: rgba(194, 103, 74, 0.30);

  /* Texte */
  --color-text: #1B2A3A;
  --color-text-muted: #5A6B7C;
  --color-text-dim: #8595A6;
  --color-text-inverse: #FAF7F2;
  --color-text-inverse-muted: #B8C2CC;

  /* Bordures */
  --color-border: #E5DDD0;
  --color-border-dark: #2D4257;

  /* Étoile dorée (avis) */
  --color-star: #E8B547;

  /* ============================================================
     TYPOGRAPHIE
     ============================================================ */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

  /* ============================================================
     ESPACEMENT
     ============================================================ */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* ============================================================
     LAYOUT
     ============================================================ */
  --container-max: 1200px;
  --container-padding: var(--space-6);

  /* ============================================================
     BORDER RADIUS
     ============================================================ */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 999px;

  /* ============================================================
     TRANSITIONS
     ============================================================ */
  --transition-base: 200ms ease-out;
  --transition-slow: 400ms ease-out;

  /* ============================================================
     SHADOWS
     ============================================================ */
  --shadow-sm: 0 1px 3px rgba(27, 42, 58, 0.06), 0 1px 2px rgba(27, 42, 58, 0.04);
  --shadow-md: 0 4px 16px rgba(27, 42, 58, 0.08), 0 2px 6px rgba(27, 42, 58, 0.04);
  --shadow-lg: 0 20px 50px rgba(27, 42, 58, 0.12), 0 8px 20px rgba(27, 42, 58, 0.06);

  /* Header height (utilisé par hero offset) */
  --nav-height: 72px;
}
