/* Terra Naïa — colour system. Values transcribed verbatim from the brand guide. */
:root{
  /* Primary — "Terra" deep water blue */
  --blue-500:#0B5575;
  --blue-400:#54889E;
  --blue-300:#9DBBC8;
  --blue-200:#DAE6EA;

  /* Secondary — light neutral */
  --stone-400:#DBDBDB;
  --stone-300:#E6E6E6;
  --stone-200:#F1F1F1;
  --stone-100:#FAFAFA;

  /* Tertiary — "Naïa" solar yellow */
  --sun-500:#F0D53D;
  --sun-400:#F5E277;
  --sun-300:#F9EEB1;
  --sun-200:#FDF9E2;

  /* Gray palette */
  --gray-1:#000000;
  --gray-2:#404040;
  --gray-3:#BFBFBF;
  --gray-4:#FFFFFF;

  /* ---- Semantic aliases ---- */
  --brand:var(--blue-500);
  --brand-strong:#083F58;
  --brand-muted:var(--blue-400);
  --accent:var(--sun-500);

  --text-strong:var(--gray-1);
  --text-body:var(--gray-2);
  --text-muted:#6E6E6E;
  --text-faint:var(--gray-3);
  --text-on-brand:var(--gray-4);
  --text-on-accent:var(--gray-1);
  --text-link:var(--blue-500);
  --text-link-hover:var(--brand-strong);

  --surface-page:var(--gray-4);
  --surface-card:var(--gray-4);
  --surface-sunken:var(--stone-100);
  --surface-subtle:var(--stone-200);
  --surface-brand:var(--blue-500);
  --surface-brand-soft:var(--blue-200);
  --surface-accent:var(--sun-500);
  --surface-accent-soft:var(--sun-300);
  --surface-inverse:var(--gray-1);

  --border-hairline:rgba(0,0,0,.10);
  --border-default:var(--stone-400);
  --border-strong:var(--gray-3);
  --border-brand:var(--blue-500);
  --border-on-brand:rgba(255,255,255,.28);

  --focus-ring:var(--sun-500);

  /* Status — derived from the brand triad, no new hues introduced */
  --status-info:var(--blue-500);
  --status-warn:var(--sun-500);
  --status-ok:#2F6B52;
  --status-error:#A33227;

  /* Protection gradient for text over imagery */
  --scrim-bottom:linear-gradient(to top,rgba(11,85,117,.88) 0%,rgba(11,85,117,.55) 38%,rgba(11,85,117,0) 100%); /* @kind color */
  --scrim-dark:linear-gradient(to top,rgba(0,0,0,.72) 0%,rgba(0,0,0,0) 72%); /* @kind color */
}
