/* RoleCaddie design tokens v2 — "Clubhouse Light".
   Change from v1: near-black surfaces/text removed. Masters green is featured as GREEN;
   dark brand moments use Masters green (#0A3D2C), never near-black. Light-first. */
:root{
  /* Surfaces — light-first, warm */
  --ivory-50:#FBF9F3;   /* page */
  --white:#FFFFFF;      /* cards */
  --stone-100:#F5EFE1;  /* warm panel */
  --stone-200:#E8DFCB;  /* recessed / sand */
  --sage-50:#E9F0E9;    /* cool light-green panel */
  --sage-100:#D7E3D8;   /* green tint / selected */
  --line:#E4DCCB;       /* hairline on light */
  --line-green:#C3D3C6; /* hairline on green tints */

  /* Greens — Masters featured, fairway for interaction */
  --masters-900:#0A3D2C; /* BRAND green: logo, headings, dark-hero FILL (reads green, not black) */
  --fairway-700:#14573F; /* primary buttons, links */
  --fairway-600:#1B6B4F; /* hover / interactive */
  --sage-500:#5E8A72;    /* muted green accent, icons on light */

  /* Metal — champagne (the one true accent) */
  --champagne-500:#C6A55C;
  --gold-700:#A9853F;    /* gold hover / gold icon on light */

  /* Ink — dark GREEN, deliberately not pure black */
  --ink-900:#14352A;     /* primary text (deep pine) */
  --ink-600:#445248;     /* secondary */
  --ink-400:#657266;     /* muted / placeholder — 4.80:1 on ivory, the lightest value that clears AA */

  /* Status — reserved, never chart series; icon+label always */
  --good:#2F7D4F; --warning:#C77420; --serious:#B23B2E; --critical:#7E1F1F;

  /* Charts — validated categorical, fixed order (light surface) */
  --chart-1:#15855C; --chart-2:#B5892B; --chart-3:#3A6BB0; --chart-4:#B03A24; --chart-5:#8452A8;

  /* Type / shape */
  --font-display:"Fraunces",Georgia,serif;
  --font-ui:"Inter",-apple-system,"Segoe UI",sans-serif;
  --radius-control:8px; --radius-card:12px;
  --shadow-card:0 1px 2px rgb(10 61 44 / 6%), 0 8px 24px rgb(10 61 44 / 4%);
  --focus-ring:0 0 0 2px var(--ivory-50),0 0 0 4px var(--champagne-500);

  /* Semantic aliases — components use THESE, never raw hex */
  --bg-page:var(--ivory-50); --bg-card:var(--white); --bg-panel:var(--stone-100);
  --bg-selected:var(--sage-100); --bg-recessed:var(--stone-200);
  --text-primary:var(--ink-900); --text-secondary:var(--ink-600); --text-muted:var(--ink-400);
  --brand:var(--masters-900); --action:var(--fairway-700); --action-hover:var(--fairway-600);
  --accent-metal:var(--champagne-500); --pin:var(--champagne-500);
  --border:var(--line);
  /* Dark brand moment (hero/footer) = Masters green, NOT black */
  --hero-bg:var(--masters-900); --hero-text:var(--ivory-50); --hero-accent:var(--champagne-500);
}
/* Optional dark theme (secondary; still green, never black) */
[data-theme="dark"]{
  --bg-page:#0A3D2C; --bg-card:#0E4A35; --bg-panel:#093625; --bg-recessed:#072E1F;
  --text-primary:#F3EFE4; --text-secondary:#CFDACF; --text-muted:#93A497;
  --border:#1C5B43; --action:#2FA97A; --action-hover:#43C08F;
  --chart-1:#2E9C72; --chart-2:#A87E24; --chart-3:#5D87C9; --chart-4:#C55A43; --chart-5:#9B6EC4;
}
