/* Blent Coffee — Colour system
   Built from the packaging & seasonal A4 sheets. The palette is a soft,
   near-black ink on warm paper-white, with three hand-pattern accent hues —
   one per coffee range: Authentic (coral), Origin (mint), Season (sun). */

:root {
  /* ---- Ink & paper (neutrals) ---- */
  --blent-ink: #202020;          /* soft black — logo & body text */
  --blent-ink-soft: #3a3a3a;     /* secondary text */
  --blent-graphite: #6b6b6b;     /* muted / captions */
  --blent-stone: #9b9794;        /* disabled, hairlines on dark */
  --blent-mist: #d9d5d0;         /* borders, dividers */
  --blent-cloud: #ece8e2;        /* subtle fills */
  --blent-paper: #f6f3ee;        /* warm page background */
  --blent-white: #ffffff;        /* cards, cups */

  /* ---- Range accents (hand-drawn pattern hues) ---- */
  --blent-coral: #f2a079;        /* Authentic — peach/coral, the hero accent */
  --blent-coral-deep: #e07d4f;   /* coral pressed / text-on-light */
  --blent-coral-tint: #fbe4d6;   /* coral wash */

  --blent-mint: #a8dcdc;         /* Origin — soft teal */
  --blent-mint-deep: #5fb6b6;    /* mint pressed / text-on-light */
  --blent-mint-tint: #e3f3f3;    /* mint wash */

  --blent-sun: #fcc91a;          /* Season — sunny yellow */
  --blent-sun-deep: #e3ab00;     /* sun pressed / text-on-light */
  --blent-sun-tint: #fff1c2;     /* sun wash */

  /* ---- Semantic aliases ---- */
  --color-bg: var(--blent-paper);
  --color-surface: var(--blent-white);
  --color-surface-alt: var(--blent-cloud);
  --color-text: var(--blent-ink);
  --color-text-muted: var(--blent-graphite);
  --color-text-inverse: var(--blent-white);
  --color-border: var(--blent-mist);
  --color-border-strong: var(--blent-ink);

  --color-accent: var(--blent-coral);
  --color-accent-deep: var(--blent-coral-deep);
  --color-accent-tint: var(--blent-coral-tint);

  /* status (kept inside the warm family) */
  --color-success: #5fa86a;
  --color-warning: var(--blent-sun-deep);
  --color-danger: #d05a43;
}
