/* ============================================================
   Pacific Counseling & Coaching — Color Tokens
   A warm, earthy, tropical-luxury palette. Deep canopy green +
   cognac gold + warm neutrals, with a soft blush for feminine
   warmth. Built for a high-end, trustworthy, non-clinical feel.
   ============================================================ */

:root {
  /* ---- Brand base palette (client-selected) ---- */
  --blush:      #F9EDF0; /* lightest, soft feminine background */
  --champagne:  #E6C8B7; /* warm neutral, secondary surface */
  --cognac:     #C3955B; /* primary accent — CTAs, gold details */
  --amber:      #BA6A36; /* secondary accent / warm hover */
  --emerald:    #1C3934; /* deep canopy green — nav, headings, footer */
  --espresso:   #261311; /* body text, deepest contrast */

  /* ---- Extended warm neutrals (harmonious extensions) ---- */
  --ivory:      #FBF7F1; /* primary warm-white page surface */
  --linen:      #F2E9DD; /* alt card / quiet section surface */
  --sand:       #E2D3C0; /* warm hairlines, dividers, borders */
  --stone:      #8C7A6B; /* muted warm gray for meta text on light */

  /* ---- Green shades ---- */
  --emerald-800: #142B27; /* darkest — deep footer, overlays */
  --emerald-600: #2A4F47; /* hover on dark surfaces */
  --palm:        #3E6157; /* softer tropical green accent */
  --sage:        #9CA995; /* desaturated leaf green, quiet tags */

  /* ---- Gold / cognac shades ---- */
  --cognac-600: #AD7F45; /* pressed / darker gold */
  --gold-soft:  #DCBE95; /* pale gold tint — badges, fills */

  /* ---- Functional ---- */
  --success:  #4C6B53;
  --error:    #A8492F;
  --white:    #FFFFFF;

  /* ============================================================
     SEMANTIC ALIASES — prefer these in components
     ============================================================ */

  /* Surfaces */
  --surface-page:      var(--ivory);
  --surface-card:      var(--white);
  --surface-raised:    var(--ivory);
  --surface-blush:     var(--blush);
  --surface-champagne: var(--champagne);
  --surface-linen:     var(--linen);
  --surface-dark:      var(--emerald);
  --surface-darkest:   var(--emerald-800);

  /* Text */
  --text-heading:      var(--emerald);
  --text-body:         var(--espresso);
  --text-muted:        var(--stone);
  --text-on-dark:      var(--blush);
  --text-on-dark-soft: var(--champagne);
  --text-on-accent:    var(--espresso);

  /* Accent / interactive */
  --accent:            var(--cognac);
  --accent-hover:      var(--amber);
  --accent-press:      var(--cognac-600);
  --accent-soft:       var(--gold-soft);

  /* Lines & borders */
  --border:            var(--sand);
  --border-strong:     var(--champagne);
  --border-on-dark:    rgba(230, 200, 183, 0.28);

  /* Links */
  --link:              var(--emerald);
  --link-hover:        var(--amber);

  /* Focus ring */
  --focus-ring:        rgba(195, 149, 91, 0.55);
}
