/* ====================================================
   DÜNA — Brand tokens
   À inclure sur toutes les pages :
   <link rel="stylesheet" href="assets/brand.css" />
   ==================================================== */

:root {
  /* Couleurs officielles */
  --bg:           #CB7B63;  /* terracotta clair — fond principal */
  --bg-deep:      #9E5338;  /* vignette / fond foncé */
  --terra-dark:   #9E5338;  /* terracotta foncé — accent, texte sur clair */
  --cream:        #F4E4D7;  /* crème — texte sur terracotta, fond doux */
  --peach:        #E5B7A0;  /* pêche — fond secondaire, accents doux */
  --taupe:        #B2A69E;  /* taupe — neutre */
  --brown:        #5F3A2A;  /* brun foncé — texte foncé, footer */
  --black:        #000000;
  --white:        #FFFFFF;

  /* Versions transparentes utiles */
  --cream-soft:   rgba(244, 228, 215, 0.78);
  --white-08:     rgba(255, 255, 255, 0.08);
  --white-32:     rgba(255, 255, 255, 0.32);

  /* Typographie officielle Düna */
  --font-logo:    'Martian Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;  /* logo / wordmark */
  --font-base:    'Noto Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;  /* baseline / texte courant */
  --font-sans:    var(--font-base);  /* alias */

  /* Rayon, espacement, transitions */
  --radius-pill: 999px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --ease:        cubic-bezier(0.2, 0.7, 0.2, 1);
}
