:root {
  /* Palette */
  --bleu-profond: #0A2540;
  --bleu-profond-rgb: 10, 37, 64;
  --sable: #E8DCC4;
  --sable-rgb: 232, 220, 196;
  --corail: #D7484E;
  --corail-rgb: 215, 72, 78;
  --blanc-casse: #FAFAF7;
  --blanc-casse-rgb: 250, 250, 247;
  --bleu-mer: #1B6B93;
  --jaune-dune: #D4A843;
  --gris-texte: #4A5568;
  --gris-clair: #E2E8F0;
  --noir-doux: #1A1A2E;

  /* Typography */
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Inter Tight', 'Helvetica Neue', sans-serif;

  --fs-hero: clamp(3.2rem, 8vw, 7.5rem);
  --fs-h1: clamp(2.4rem, 5vw, 4.5rem);
  --fs-h2: clamp(1.8rem, 3.5vw, 3rem);
  --fs-h3: clamp(1.3rem, 2vw, 1.75rem);
  --fs-h4: clamp(1.1rem, 1.5vw, 1.35rem);
  --fs-body: clamp(0.95rem, 1.1vw, 1.125rem);
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;

  --lh-tight: 1.1;
  --lh-heading: 1.2;
  --lh-body: 1.65;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-black: 900;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 10rem;

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 840px;
  --container-wide: 1440px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 200ms;
  --duration-base: 400ms;
  --duration-slow: 700ms;
  --duration-reveal: 900ms;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(var(--bleu-profond-rgb), 0.08);
  --shadow-md: 0 4px 16px rgba(var(--bleu-profond-rgb), 0.1);
  --shadow-lg: 0 8px 40px rgba(var(--bleu-profond-rgb), 0.12);
  --shadow-xl: 0 16px 64px rgba(var(--bleu-profond-rgb), 0.16);
  --shadow-card-hover: 0 12px 48px rgba(var(--bleu-profond-rgb), 0.14);

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Z-index */
  --z-base: 1;
  --z-sticky: 100;
  --z-overlay: 200;
  --z-modal: 300;
  --z-toast: 400;

  /* Noise texture (inline SVG) */
  --noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}
