/* ══════════════════════════════════════════════
   VARIABLES & BASE — Genea Vostra
   Source unique de la palette, du reset et du body
   ══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-deep:   #1b5068;
  --blue-mid:    #2a7090;
  --blue-light:  #3a8aad;
  --blue-pale:   #c8dde8;
  --gold:        #c9a96e;
  --gold-light:  #e4c992;
  --cream:       #f5f0e8;
  --white:       #ffffff;
  --ink:         #1a2830;
  --muted:       #6a8a96;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'EB Garamond', serif;
  color: var(--ink);
  overflow-x: hidden;
}
