/* ==========================================================================
   Kamai Event — Design tokens (charte)
   Couleurs, typographies et base globale partagées par tout le site.
   ========================================================================== */
:root{
  /* Couleurs charte */
  --ivory:#FAF8F4;            /* fond ivoire */
  --ink:#0A0A0A;             /* texte */
  --gold:#C5A572;            /* or champagne */
  --beige:#E8DCC8;
  --taupe:#B8946A;
  --ink-soft:rgba(10,10,10,.55);

  /* Typographies */
  --serif:"Cormorant Garamond",Georgia,serif;
  --sans:"Inter",system-ui,sans-serif;
}

/* Reset minimal */
*{ margin:0; padding:0; box-sizing:border-box; }

html,body{ background:var(--ivory); color:var(--ink); }
body{
  font-family:var(--sans);
  font-weight:300;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; }
