/*
 * DnB Expert AI — Visual brand tokens (source of truth)
 *
 * Consumed by:
 *  - Production: Jinja2 templates via the build pipeline
 *
 * Load order: shared/tailwind.css → shared/base.css → this file
 * Preview:    http://localhost:3000/01-001_chat.html?brand=dnbexpert
 */

:root,
[data-brand="dnbexpert"] {

  /* ── Identity ─────────────────────────────── */
  --site-name:    "DnB Expert AI";
  --site-tagline: "Evidence-based answers from dairy and beef production literature";

  /* ── Colour palette ───────────────────────── */
  --palette-field-green:  #3D5A2A;   /* deep agricultural green */
  --palette-harvest-gold: #D4A017;   /* harvest / grain gold */
  --palette-white:        #FFFFFF;
  --palette-offwhite:     #F6F5F0;   /* warm parchment off-white */
  --palette-dark:         #1E1C17;   /* near-black with warm undertone */
  --palette-muted:        #6B6845;   /* earth-toned mid-tone */
  --palette-border:       #DDD8C4;   /* warm straw border */
  --palette-error:        #DC2626;
  --palette-success:      #16A34A;

  /* ── Semantic colour roles ────────────────── */
  --color-primary:        var(--palette-field-green);
  --color-accent:         var(--palette-harvest-gold);
  --color-background:     var(--palette-white);
  --color-surface:        var(--palette-offwhite);
  --color-text:           var(--palette-dark);
  --color-text-muted:     var(--palette-muted);
  --color-border:         var(--palette-border);
  --color-error:          var(--palette-error);
  --color-success:        var(--palette-success);

  /* Derived hover/active states */
  --color-primary-hover:         color-mix(in srgb, var(--color-primary) 85%, black);
  --color-primary-subtle:        color-mix(in srgb, var(--color-primary) 10%, white);
  --color-text-on-primary:       #FFFFFF;
  --color-text-on-primary-muted: rgba(255, 255, 255, 0.65);

  /* ── Typography ───────────────────────────── */
  --font-base:     'Inter', system-ui, sans-serif;
  --font-headings: 'Inter', system-ui, sans-serif;
  --font-mono:     'JetBrains Mono', 'Fira Code', monospace;

  /* ── Shape ─────────────────────────────────  */
  --radius-base:   0.375rem;
  --radius-lg:     0.625rem;
  --radius-full:   9999px;

  /* ── Shadows ──────────────────────────────── */
  --shadow-sm:     0 1px 2px 0 rgb(61 90 42 / 0.07);
  --shadow-md:     0 4px 6px -1px rgb(61 90 42 / 0.12), 0 2px 4px -2px rgb(61 90 42 / 0.08);

  /* ── Logo paths ─────────────────────────── */
  --logo-primary:  none;   /* replace with url('../brands/dnbexpert/logo-primary.svg') */
  --logo-mark:     none;   /* replace with url('../brands/dnbexpert/logo-mark.svg') */
}
