/* ============================================================
   Deliseeds · Color tokens
   Palette sourced from the official brand identity (IDENTYFIKACJA).
   Polish swatch names kept as comments for traceability.
   ============================================================ */
:root {
  /* ---- Brand greens ---- */
  --color-bottle-green: #0B1C17;   /* Butelkowa zieleń — deepest green, primary ink/surface */
  --color-emerald:      #1B352E;   /* Szmaragd — emerald, secondary dark surface */
  --color-lime:         #B0CE34;   /* Zielony akcent — signature lime accent */
  --color-avocado:      #BCC89E;   /* Awokado — muted sage green */
  --color-pistachio:    #F1F3E4;   /* Pistacja — pale green tint, soft surface */

  /* ---- Warm accents ---- */
  --color-orange:       #FD9B48;   /* Pomarańczowy — warm orange */
  --color-apricot:      #FB897B;   /* Morela — coral / apricot */
  --color-apricot-soft: #FFE3DA;   /* Jasna morela — light apricot tint */

  /* ---- Neutrals ---- */
  --color-white:        #FFFFFF;   /* Biały */
  --color-ink:          #0B1C17;   /* default text = bottle green, never pure black */

  /* ---- Derived / functional greens (oklch-harmonised) ---- */
  --color-lime-deep:    #97B225;   /* lime, darkened for text-on-light & hovers */
  --color-emerald-700:  #122821;   /* between bottle-green and emerald */
  --color-pistachio-200:#E6EAD4;   /* slightly deeper pistachio for borders/lines */

  /* ============================================================
     Semantic aliases — prefer these in components
     ============================================================ */

  /* Surfaces */
  --surface-page:        var(--color-white);
  --surface-page-soft:   var(--color-pistachio);   /* alternating light sections */
  --surface-card:        var(--color-white);
  --surface-card-soft:   #FAFBF3;                   /* near-white warm card */
  --surface-inverse:     var(--color-bottle-green); /* dark hero / footer */
  --surface-inverse-2:   var(--color-emerald);

  /* Text */
  --text-strong:   var(--color-bottle-green);
  --text-body:     #2B3A33;                  /* softened ink for paragraphs */
  --text-muted:    #5E6B63;
  --text-on-dark:  var(--color-white);
  --text-on-dark-muted: #B9C6BD;
  --text-accent:   var(--color-lime-deep);   /* lime that passes contrast on white */

  /* Brand / accent roles */
  --accent:           var(--color-lime);
  --accent-contrast:  var(--color-bottle-green); /* text/icon sitting on lime */
  --accent-hover:     var(--color-lime-deep);
  --accent-warm:      var(--color-orange);
  --accent-coral:     var(--color-apricot);

  /* Borders & lines */
  --border-soft:   var(--color-pistachio-200);
  --border-strong: #C9D2BC;
  --border-on-dark: rgba(255,255,255,0.16);

  /* Focus ring */
  --focus-ring: var(--color-lime);

  /* Status (kept within brand temperature) */
  --status-success: #4E8C3F;
  --status-warning: var(--color-orange);
  --status-error:   var(--color-apricot);
  --status-info:    var(--color-emerald);
}
